forked from jeroennoten/Laravel-AdminLTE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 886 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
39
40
{
"name": "jeroennoten/laravel-adminlte",
"description": "Easy AdminLTE integration with Laravel",
"keywords": ["laravel", "adminlte", "admin", "administrator"],
"license": "MIT",
"authors": [
{
"name": "Jeroen Noten",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JeroenNoten\\LaravelAdminLte\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/Console/CommandTestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"JeroenNoten\\LaravelAdminLte\\AdminLteServiceProvider"
]
}
},
"require": {
"laravel/framework": ">=7.0",
"php": ">=7.2.5",
"almasaeed2010/adminlte": "3.2.*"
},
"require-dev": {
"phpunit/phpunit": ">=9.1",
"orchestra/testbench": ">=4.0",
"scrutinizer/ocular": "^1.9"
}
}