-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.52 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
46
47
48
49
{
"name": "korridor/laravel-model-validation-rules",
"description": "A laravel validation rule that uses eloquent to validate if a model exists",
"keywords": ["validation", "laravel", "rule", "model", "exist", "eloquent"],
"homepage": "https://github.com/korridor/laravel-model-validation-rules",
"authors": [
{
"name": "korridor",
"email": "26689068+korridor@users.noreply.github.com"
}
],
"license": "MIT",
"require": {
"php": "^7.1|^7.2|^7.3",
"illuminate/support": "^5.6|^5.7|^5.8|^6.0"
},
"require-dev": {
"orchestra/testbench": "^3.6|^3.7|^3.8|^4.0",
"phpunit/phpunit": "^7.0|^8.0",
"friendsofphp/php-cs-fixer": "^2.15",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Korridor\\LaravelModelValidationRules\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Korridor\\LaravelModelValidationRules\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"fix": "./vendor/bin/php-cs-fixer fix",
"lint": "./vendor/bin/phpcs --error-severity=1 --warning-severity=8 --extensions=php"
},
"extra": {
"laravel": {
"providers": [
"Korridor\\LaravelModelValidationRules\\ModelValidationServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}