-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1018 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
33
34
35
36
37
38
39
40
{
"name": "artesaos/shield",
"description": "A simple way to centralize your validation rules for laravel",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Vinicius Reis",
"email": "[email protected]"
},
{
"name": "Diego Hernandes",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"validation",
"rules",
"form request",
"modules",
"ddd"
],
"homepage": "https://github.com/artesaos/shield",
"support": {
"issues": "https://github.com/artesaos/shield/issues",
"source": "https://github.com/artesaos/shield"
},
"require": {
"illuminate/support": "~5.1 || ~5.2 || ~5.3",
"illuminate/filesystem": "~5.1 || ~5.2 || ~5.3"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Artesaos\\Shield\\": "src/"
}
},
"minimum-stability": "stable"
}