-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.14 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
{
"name": "dandisy/webcore-base",
"description": "Main Package of webcore platform",
"authors": [
{
"name": "dandi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0.0",
"dandisy/adminlte-templates": "^1.0.0",
"dandisy/filemanager": "^1.0.0",
"dandisy/laravel-generator": "^1.0.0",
"dandisy/swagger-generator": "^1.0.0",
"doctrine/dbal": "~2.3",
"itsgoingd/clockwork": "^3.1",
"jlapp/swaggervel": "dev-master",
"laravelcollective/html": "^6.2.0",
"league/glide-laravel": "^1.0",
"santigarcor/laratrust": "^4.0",
"spatie/laravel-cors": "^1.0"
},
"autoload": {
"psr-4": {
"Webcore\\Base\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Webcore\\Base\\BaseServiceProvider",
"Webcore\\FileManager\\FileManagerServiceProvider",
"Prettus\\Repository\\Providers\\RepositoryServiceProvider"
]
}
}
}