-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
32 lines (32 loc) · 862 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": "lrgt/laravel-form-ajax-validation",
"type": "library",
"description": "Make ajax validation with Laravel Requests for forms with bootstrap",
"keywords": ["laravel","form","ajax","validation"],
"homepage": "https://github.com/guicho0601/laravel-form-ajax-validation",
"license": "MIT",
"authors": [
{
"name": "Luis Ramos",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=5.2.0"
},
"autoload": {
"psr-0": {
"Lrgt\\LaravelFormAjaxValidation": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Lrgt\\LaravelFormAjaxValidation\\LaravelFormAjaxValidationServiceProvider"
]
}
},
"minimum-stability": "dev"
}