-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.09 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.09 KB
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
{
"name": "modstart/modstart",
"description": "modstart",
"type": "library",
"keywords": [
"laravel",
"admin"
],
"homepage": "https://github.com/modstart/modstart",
"license": "Apache 2.0",
"authors": [
{
"name": "ModStart",
"email": "modstart@163.com"
}
],
"require": {
"php": ">=5.5.9",
"ext-json": "*",
"ext-curl": "*",
"intervention/image": "^2.3",
"doctrine/dbal": "^2.5",
"jenssegers/agent": "v2.6.4",
"ezyang/htmlpurifier": "dev-master",
"predis/predis": "^1.1",
"bacon/bacon-qr-code": "*",
"arvenil/ninja-mutex": "^0.6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ModStart\\": "src",
"Chumper\\Zipper\\": "src/Misc/Zipper"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"ModStart\\ModStartServiceProvider"
]
}
}
}