forked from wutongwan/laravel-lego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 925 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
{
"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"
],
"require": {
"php": ">=7.0.0",
"laravel/framework": "~5.2",
"laravelcollective/html": "~5.2",
"mobiledetect/mobiledetectlib": "^2.8",
"maatwebsite/excel": "~2.1.0",
"symfony/class-loader": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "~5.2",
"laravel/laravel": "~5.2"
},
"autoload": {
"files": [
"src/Lego/Utility/functions.php"
],
"psr-4": {
"Lego\\": "src/Lego/"
}
},
"autoload-dev": {
"psr-4": {
"Lego\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}