forked from inkvizytor/FluentForm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 821 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 821 Bytes
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
{
"name": "inkvizytor/fluentform",
"description": "Form builder for Laravel",
"keywords" : ["laravel","form","builder","form builder","bootstrap"],
"license": "MIT",
"authors": [
{
"name": "Jacek Tobiasz",
"email": "j.t.tobiasz@gmail.com"
}
],
"require": {
"php": ">=7.2.16",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"inkvizytor\\FluentForm\\": "src/"
}
},
"suggest": {
"barryvdh/laravel-ide-helper": "Required to provide autocompletion for FluentForm facade (~2.0).",
"dragonfly/nag": "Required to enable validation rules converter to Parsley or formvalidation.io data attributes."
}
}