forked from proengsoft/laravel-jsvalidation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (41 loc) · 1.09 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "proengsoft/laravel-jsvalidation",
"type": "library",
"description": "Validate forms transparently with Javascript reusing your Laravel Validation Rules, Messages, and FormRequest",
"keywords": [
"proengsoft",
"laravel",
"javascript",
"validator",
"validation",
"jquery",
"form"
],
"homepage": "https://github.com/proengsoft/laravel-jsvalidation",
"license": "MIT",
"authors": [
{
"name": "Albert Moreno",
"email": "[email protected]",
"homepage": "http://www.proengsoft.com",
"role": "Developer"
}
],
"require": {
"php" : ">=5.4.0",
"illuminate/support": "~5.0",
"illuminate/validation": "~5.0",
"illuminate/contracts": "~5.0",
"illuminate/view": "~5.0",
"illuminate/config": "~5.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"mockery/mockery":"0.9.*"
},
"autoload": {
"psr-4": {
"Proengsoft\\JsValidation\\": "src"
}
}
}