forked from bastinald/laravel-livewire-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 793 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
{
"name": "bastinald/laravel-livewire-forms",
"homepage": "https://github.com/bastinald/laravel-livewire-forms",
"description": "Laravel Livewire form component with declarative Bootstrap 5 fields and buttons.",
"license": "MIT",
"authors": [
{
"name": "Kevin Dion",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"laravel/framework": "^8.0",
"livewire/livewire": "^2.0"
},
"autoload": {
"psr-4": {
"Bastinald\\LaravelLivewireForms\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Bastinald\\LaravelLivewireForms\\Providers\\LaravelLivewireFormsProvider"
]
}
}
}