forked from spiral/cycle-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.25 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
50
51
52
53
54
{
"name": "spiral/cycle-bridge",
"type": "library",
"description": "Cycle ORM integration package",
"license": "MIT",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/framework/issues",
"source": "https://github.com/spiral/cycle-bridge"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"cycle/orm": "^2.0",
"cycle/annotated": "^3.0",
"cycle/migrations": "^3.0",
"cycle/schema-migrations-generator": "^2.0",
"cycle/schema-renderer": "^1.0",
"spiral/framework": "^2.8"
},
"require-dev": {
"doctrine/collections": "^1.6",
"illuminate/collections": "^8.77",
"spiral/roadrunner": "^1.4",
"phpunit/phpunit": "^8.5|^9.0",
"vimeo/psalm": "^4.9",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"Spiral\\Cycle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\App\\": "tests/App",
"Spiral\\Tests\\": "tests/src"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}