-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
34 lines (34 loc) · 892 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
{
"name": "atnic/laravel-admin-lte",
"description": "Laravel Package for integrating AdminLTE template and this package is Laravel Mix friendly.",
"keywords": ["laravel", "adminlte", "admin-lte", "package", "composer"],
"license": "MIT",
"type": "package",
"require": {
"php": ">=5.6.4",
"laravel/framework": "^5.4"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7",
"laravel/tinker": "~1.0"
},
"extra": {
"laravel": {
"providers": [
"Atnic\\AdminLTE\\Providers\\AppServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Atnic\\AdminLTE\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Atnic\\AdminLTE\\Tests\\": "tests/"
}
}
}