-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 917 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 917 Bytes
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
{
"name": "queents/vilt",
"description": "VILT stack HMVC dashboard and resource generator with ready to use modules",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Queents\\Vilt\\": "src/",
"Modules\\": "../../../Modules/"
}
},
"extra": {
"laravel": {
"providers": [
"Queents\\Vilt\\ViltServiceProvider"
]
}
},
"authors": [
{
"name": "Fady Mondy",
"email": "info@3x1.io"
}
],
"minimum-stability": "beta",
"require": {
"nwidart/laravel-modules": "^9.0",
"spatie/laravel-translatable": "^6.0",
"queents/api-module": "^1.0",
"queents/base-module": "^1.0",
"queents/menu-module": "^1.0",
"queents/roles-module": "^1.0",
"queents/generator-module": "^1.0"
}
}