forked from butschster/LaravelCycleORM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.35 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
{
"name": "laravel/cycle-orm",
"description": "Cycle ORM integration for the Laravel Framework",
"keywords": [
"laravel",
"lumen",
"orm",
"database",
"cycle"
],
"license": "MIT",
"authors": [
{
"name": "FallenParadise",
"email": "yjokerch@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": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Laravel\\Cycle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Cycle\\Providers\\LaravelCycleServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}