forked from andreyvolosyuk/simple-eloquent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 968 Bytes
/
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
{
"name": "volosyuk/simple-eloquent",
"description": "Adaptation of eloquent for retrieving its attributes",
"license": "MIT",
"keywords": ["laravel", "eloquent"],
"authors": [
{
"name": "Andrey Volosyuk",
"email": "valasiuk.andrei@gmail.com"
}
],
"require": {
"php": "^7.3",
"illuminate/database": "^8.0",
"illuminate/support": "^8.0",
"illuminate/pagination": "^8.0"
},
"autoload": {
"psr-4": {
"Volosyuk\\SimpleEloquent\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"extra": {
"branch-alias": {
"dev-master": "8.0.x-dev",
"dev-seven": "7.0.x-dev",
"dev-five_eight": "5.8.x-dev",
"dev-five_seven": "5.7.x-dev",
"dev-five_six": "5.6.x-dev",
"dev-five_five": "5.5.x-dev",
"dev-five_four": "5.4.x-dev",
"dev-five_three": "5.3.x-dev"
}
}
}