forked from Flynsarmy/laravel-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (31 loc) · 790 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
{
"name": "iyoworks/form-builder",
"keywords": ["laravel", "form", "builder"],
"license": "MIT",
"description": "An Object Oriented form builder that extracts form presentation from form creation. Based on Flyn San's Form Builder.",
"authors": [
{
"name": "Blessing Osakue",
"email": "iyoworks@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git://github.com/orchestral/phpseclib.git"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "~4",
"iyoworks/html": "~1"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Iyoworks\\FormBuilder\\": "src"
}
},
"minimum-stability": "dev"
}