forked from tanthammar/tall-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 942 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
37
38
{
"name": "tanthammar/tall-forms",
"description": "A dynamic, responsive Laravel Livewire form generator with realtime validation, file uploads, array fields, and more.",
"keywords": [
"tailwind",
"alpinejs",
"livewire",
"forms",
"laravel"
],
"homepage": "https://github.com/tanthammar/tall-forms",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tina Hammar",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4.0",
"livewire/livewire": "^2.3.5",
"laravel/framework": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Tanthammar\\TallForms\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Tanthammar\\TallForms\\FormServiceProvider"
]
}
}
}