-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "triun/laravel-model-validable",
"description": "Gives the models the ability to be validated before saved.",
"license": "MIT",
"homepage": "https://github.com/Triun",
"support": {
"issues": "https://github.com/Triun/laravel-model-validable/issues",
"source": "https://github.com/Triun/laravel-model-validable"
},
"keywords": ["laravel", "model", "eloquent", "make", "generator", "validation", "validator", "validable", "rules"],
"authors": [
{
"name": "Gonzalo Moreno"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "^2.1",
"triun/laravel-model-base": "dev-master",
"doctrine/dbal": "^2.5"
},
"suggest": {
"triun/laravel-model-base": "In order to use the RulesModifier and the ValidatorModifier"
},
"autoload": {
"psr-4": {
"Triun\\ModelValidable\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/TestCase.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}