-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·39 lines (39 loc) · 1.05 KB
/
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
39
{
"name": "webflorist/formfactory",
"description": "Convenient and powerful form-builder for Laravel (v5.5+ and v6)",
"homepage": "https://github.com/webflorist/formfactory",
"license": "MIT",
"authors": [
{
"name": "Gerald Buttinger",
"email": "gerald@code.florist"
}
],
"require": {
"laravel/framework": ">=5.5 <10.0.0",
"webflorist/htmlfactory": "1.1.*",
"webflorist/vuefactory": "1.0.*"
},
"require-dev": {
"orchestra/testbench": ">=3.5",
"orchestra/testbench-dusk": ">=3.5",
"gajus/dindent": "^2.0",
"orchestra/dusk-updater": "^1.0"
},
"autoload": {
"psr-4": {
"Webflorist\\FormFactory\\": "src/",
"FormFactoryTests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Webflorist\\FormFactory\\FormFactoryServiceProvider"
],
"aliases": {
"Form": "Webflorist\\FormFactory\\FormFactoryFacade"
}
}
}
}