-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
43 lines (43 loc) · 995 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
41
42
43
{
"name": "infyomlabs/laravel-ui-adminlte",
"description": "Laravel frontend preset for AdminLTE Theme",
"keywords": [
"laravel",
"preset",
"adminlte"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mitul Golakiya",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0",
"infyomlabs/laravel-generator-helpers": "^5.0",
"laravel/ui": "^4.2"
},
"autoload": {
"psr-4": {
"InfyOm\\AdminLTEPreset\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"InfyOm\\AdminLTEPreset\\AdminLTEPresetServiceProvider"
]
}
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/infyomlabs"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}