-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.39 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "wakebit/cycle-bridge",
"description": "Cycle ORM bridge",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Wakebit\\CycleBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wakebit\\CycleBridge\\TestApp\\": "tests/App/",
"Wakebit\\CycleBridge\\Tests\\": "tests/src/"
}
},
"require": {
"php": "^8.0|^8.1|^8.2",
"cycle/annotated": "^3.0",
"cycle/database": "^2.0",
"cycle/migrations": "^3.0",
"cycle/orm": "^2.0",
"cycle/schema-builder": "^2.0",
"cycle/schema-migrations-generator": "^2.0",
"cycle/schema-renderer": "^1.1",
"psr/container": "^1.0|^2.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"spiral/core": "^2.9",
"symfony/console": "^5.1|^6.0"
},
"require-dev": {
"cache/filesystem-adapter": "^1.1",
"friendsofphp/php-cs-fixer": "^3.4",
"league/flysystem": "^1.0",
"php-di/php-di": "^6.3",
"phpunit/phpunit": "^8.5 || ^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.19",
"voku/arrayy": "^7.9"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
}