-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
29 lines (29 loc) · 1.06 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
{
"name": "bllim/laravalid",
"description": "This package makes validation rules defined in laravel work client-side by converting to html/js plugins such as jquery validation. It also allows to use laravel validation messages so you can show same messages for both sides.",
"keywords" : ["laravel","laravel5","validation","laravel validation","client-side","client side","laravel validation converter","laravel validation for client-side", "jquery validation", "bootstrap validation"],
"license": "MIT",
"authors": [
{
"name": "Bilal Gultekin",
"email": "bilal@bilal.im"
}
],
"require": {
"php": ">=5.4.0",
"laravelcollective/html": "~5.0",
"illuminate/support": "~5.0",
"illuminate/validation": "~5.0",
"illuminate/routing": "~5.0",
"illuminate/translation": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"Bllim\\Laravalid\\": "src/"
}
},
"minimum-stability": "stable"
}