forked from bytestream/laravel-jsvalidation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (43 loc) · 1.17 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
44
45
{
"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://memorylimit.net",
"role": "DevOps"
}
],
"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",
"illuminate/http": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery":"0.9.*"
},
"autoload": {
"psr-4": {
"Proengsoft\\JsValidation\\": "src",
"Proengsoft\\JsValidation\\Tests\\": "tests"
}
}
}