-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (60 loc) · 1.6 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
57
58
59
60
61
{
"name": "v-reap/entity-attribute-value-model",
"description": "Entity–attribute–value model (EAV) for laravel",
"type": "library",
"keywords": ["laravel", "Entity attribute value", "EAV", "model"],
"homepage": "https://github.com/v-reap/entity-attribute-value-model",
"license": "MIT",
"authors": [
{
"name": "Jianfeng Xia",
"email": "jackxia5@foxmail.com"
}
],
"require": {
"php": ">=7.0.0",
"encore/laravel-admin": "^1.5",
"barryvdh/laravel-cors": "^0.11.0",
"consoletvs/charts": "6.*",
"fideloper/proxy": "~3.3",
"folklore/graphql": "^1.1",
"intervention/image": "^2.4",
"jaeger/querylist": "^4.0",
"laravel/framework": "5.5.*",
"mews/captcha": "^2.2",
"overtrue/laravel-wechat": "~4.0",
"phpmentors/workflower": "1.3.*",
"spatie/eloquent-sortable": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"laravel/laravel": "~5.5"
},
"autoload": {
"psr-4": {
"Eav\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Models\\": "tests/models",
"Tests\\Controllers\\": "tests/controllers"
},
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Eav\\EavServiceProvider"
],
"aliases": {
"Eav": "Eav\\Facades\\Eav"
}
}
}
}