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
25 lines (25 loc) · 762 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 762 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
{
"name": "inkvizytor/fluentform",
"description": "Form builder for Laravel 5",
"keywords" : ["laravel5","laravel","form","builder","form builder","bootstrap"],
"license": "MIT",
"authors": [
{
"name": "Jacek Tobiasz",
"email": "j.t.tobiasz@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.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."
}
}