forked from wutongwan/laravel-lego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.45 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
{
"name": "wutongwan/lego",
"description": "Yet another CRUD widgets for laravel 5.2+",
"homepage": "https://github.com/wutongwan/laravel-lego",
"license": "MIT",
"keywords": [
"crud",
"admin",
"widget"
],
"authors": [
{
"name": "zhwei",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": "5.2.* || 5.3.* || 5.4.* || 5.5.*",
"laravel/framework": "5.2.* || 5.3.* || 5.4.* || 5.5.*",
"laravelcollective/html": "~5.2",
"mobiledetect/mobiledetectlib": "^2.8",
"maatwebsite/excel": "~2.1.0",
"symfony/class-loader": "~3.2",
"mews/purifier": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~5.2",
"laravel/laravel": "~5.2",
"fzaninotto/faker": "^1.6",
"sleimanx2/plastic": "~0.3.0"
},
"autoload": {
"files": [
"src/Lego/Utility/functions.php"
],
"psr-4": {
"Lego\\": "src/Lego/"
}
},
"autoload-dev": {
"psr-4": {
"Lego\\Tests\\": "tests/"
}
},
"suggest": {
"sleimanx2/plastic": "Required to use the Elasticsearch Query (~0.3.0)."
},
"extra": {
"laravel": {
"providers": [
"Lego\\LegoServiceProvider"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}