-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 990 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
{
"name": "llama-laravel/bootstrap-form",
"description": "Just a Formbuilder with some Bootstrap specific conveniences. Remembers old input, retrieves error messages and handles all your boilerplate Bootstrap markup automatically.",
"authors": [
{
"name": "XuaNguyen",
"email": "[email protected]",
"role": "Dev"
}
],
"version": "0.1",
"license": "MIT",
"require": {
"php": ">=5.5",
"laravel/framework": "5.1.*|5.2.*|5.3.*",
"laravelcollective/html": "5.1.*|5.2.*|5.3.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Llama\\BootstrapForm\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Llama\\BootstrapForm\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}