-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
56 lines (56 loc) · 1.4 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
55
56
{
"name": "butschster/cycle-orm",
"description": "Cycle ORM integration for the Laravel Framework",
"keywords": [
"laravel",
"lumen",
"orm",
"database",
"cycle"
],
"license": "MIT",
"authors": [
{
"name": "Pavel Buchnev",
"email": "butschster@gmail.com"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/config": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/contracts": "^7.0|^8.0",
"illuminate/console": "^7.0|^8.0",
"illuminate/pagination": "^7.0|^8.0",
"cycle/annotated": "^2.0",
"cycle/migrations": "^1.0",
"cycle/orm": "^1.2",
"cycle/proxy-factory": "^1.2.1",
"cycle/schema-builder": "^1.1"
},
"require-dev": {
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Butschster\\Cycle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Butschster\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Butschster\\Cycle\\Providers\\LaravelServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}