forked from kdion4891/laravel-livewire-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 940 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
{
"name": "etsvthor/laravel-livewire-forms",
"description": "A dynamic, responsive Laravel Livewire form component with realtime validation, file uploads, array fields, and more.",
"homepage": "https://github.com/etsvThor/laravel-livewire-forms",
"license": "MIT",
"authors": [
{
"name": "Thijs Lacquet"
},
{
"name": "Niek Brekelmans"
}
],
"require": {
"php": "~8.1.0 | ~8.2.0",
"illuminate/console": "^9.0 | ^10.0",
"illuminate/http": "^9.0 | ^10.0",
"illuminate/support": "^9.0 | ^10.0",
"livewire/livewire": "^2.0 | ^3.0"
},
"autoload": {
"psr-4": {
"EtsvThor\\LaravelLivewireForms\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"EtsvThor\\LaravelLivewireForms\\Providers\\FormServiceProvider"
]
}
}
}