forked from Distilleries/FormBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1011 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
39
{
"name": "distilleries/laravel-form-builder",
"description": "Based on laravel-form-builder (https://github.com/kristijanhusak/laravel-form-builder). That add default component and add view system.",
"license": "MIT",
"authors": [
{
"name": "Maxime Francois",
"email": "kezho@me.com"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "5.8.*",
"illuminate/filesystem": "5.8.*",
"kris/laravel-form-builder": "1.6.12",
"cloudinary/cloudinary_php": "dev-master"
},
"require-dev": {
"orchestra/database": "3.8.*",
"orchestra/testbench": "3.8.*",
"orchestra/testbench-browser-kit": "3.8.*",
"phpunit/phpunit": "~7.0",
"mockery/mockery": "~1.0",
"fzaninotto/faker": "~1.4"
},
"autoload": {
"classmap": [
"tests"
],
"psr-4": {
"Distilleries\\FormBuilder\\": "src/Distilleries/FormBuilder"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}