forked from MtDalPizzol/laravel-viltify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 828 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
{
"name": "dalpizzol/laravel-viltify",
"description": "A starter kit that integrates Laravel with Vue CLI, Inertia.js, TailwindCSS and Vuetify",
"homepage": "https://github.com/MtDalPizzol/laravel-viltify",
"license": "MIT",
"authors": [
{
"name": "Matheus Dal'Pizzol",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/filesystem": "^9.3",
"illuminate/support": "^9.3",
"illuminate/validation": "^9.3"
},
"autoload": {
"psr-4": {
"DalPizzol\\Viltify\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"DalPizzol\\Viltify\\ViltifyServiceProvider"
]
}
},
"prefer-stable": true
}