forked from sunel/eav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·39 lines (39 loc) · 874 Bytes
/
composer.json
File metadata and controls
executable file
·39 lines (39 loc) · 874 Bytes
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
{
"name": "sunel/eav",
"description": "Eav For Artisan.",
"keywords": ["eav", "laravel"],
"license": "MIT",
"require": {
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
"league/csv":"^9.0",
"laravel/legacy-factories": "^1.1",
"sunel/json-api-resources":">=0.1.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"fzaninotto/faker": "~1.4"
},
"authors": [
{
"name": "Sunel TR",
"email": "sunelbe@gmail.com"
}
],
"autoload": {
"psr-4": {
"Eav\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eav\\TestCase\\" : "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Eav\\Providers\\LaravelServiceProvider"
]
}
}
}