-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
36 lines (35 loc) · 861 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
{
"name": "shipu/web-installer",
"description": "Laravel Web Installer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Shipu Ahamed",
"email": "shipuahamed01@gmail.com"
}
],
"autoload": {
"psr-4": {
"Shipu\\WebInstaller\\": "src/"
}
},
"require": {
"spatie/laravel-package-tools": "^1.9",
"livewire/livewire": "^3.0@beta",
"filament/forms": "^3.0-stable",
"filament/support": "^3.0-stable",
"laravel/helpers": "^1.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Shipu\\WebInstaller\\WebInstallerServiceProvider"
],
"aliases": {
}
}
}
}