-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
36 lines (36 loc) · 1.11 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
{
"name": "prettus/laravel-validation",
"description": "Laravel Validation Service",
"keywords": [
"laravel",
"validation",
"service"
],
"authors": [
{
"name": "Anderson Andrade",
"homepage": "http://andersonandra.de",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "http://andersao.github.io/laravel-validation",
"support": {
"email": "[email protected]",
"issues": "https://github.com/andersao/laravel-validation/issues",
"wiki": "https://github.com/andersao/laravel-validation",
"source": "https://github.com/andersao/laravel-validation",
"docs": "http://andersao.github.io/laravel-validation"
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Prettus\\Validator\\": "src/Prettus/Validator/"
}
},
"minimum-stability": "stable"
}