forked from metallurgical/FormField
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
39
40
41
{
"name": "luthfi/formfield",
"description": "Laravel Form Field the extension of Laravelcollective Form for Laravel 5.3, 5.4 and 5.5 with Twitter Bootstrap 3",
"license": "MIT",
"authors": [
{
"name": "Nafies Luthfi",
"email": "nafiesl@gmail.com"
}
],
"autoload": {
"psr-4": {
"Luthfi\\FormField\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.6.4",
"laravelcollective/html": "5.3.* || 5.4.* || 5.5.*"
},
"require-dev": {
"orchestra/testbench": "~3.0"
},
"extra": {
"laravel": {
"providers": [
"Luthfi\\FormField\\FormFieldServiceProvider"
],
"aliases": {
"FormField": "Luthfi\\FormField\\FormFieldFacade",
"Form": "Collective\\Html\\FormFacade",
"Html": "Collective\\Html\\HtmlFacade"
}
}
}
}