-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
62 lines (62 loc) · 1.5 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
62
{
"name": "wutongwan/lego",
"description": "Yet another CRUD widgets for Laravel",
"homepage": "https://github.com/wutongwan/laravel-lego",
"license": "MIT",
"keywords": [
"crud",
"admin",
"widget"
],
"authors": [
{
"name": "zhwei",
"email": "zhwei.yes@gmail.com"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ezyang/htmlpurifier": "^4.13",
"illuminate/support": "^6.0 || ^7.0",
"laravelcollective/html": "^6.0",
"mobiledetect/mobiledetectlib": "^2.8",
"phpoffice/phpspreadsheet": "^1.14"
},
"require-dev": {
"box/spout": "^2.7",
"fzaninotto/faker": "^1.9",
"laravel/laravel": "@stable",
"ongr/elasticsearch-dsl": "^6.0",
"phpunit/phpunit": "^7.5.15 || ^8.4 || ^9.0"
},
"autoload": {
"files": [
"src/Lego/Utility/functions.php"
],
"psr-4": {
"Lego\\": "src/Lego/"
}
},
"autoload-dev": {
"psr-4": {
"Lego\\Tests\\": "tests/",
"Lego\\Demo\\": "demo/app"
}
},
"suggest": {
"ongr/elasticsearch-dsl": "Required to use the ElasticSearch Query."
},
"extra": {
"laravel": {
"providers": [
"Lego\\LegoServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "stable"
}