-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mallardduck/extended-validator-laravel",
"description": "An extension to Laravel's Validator class that provides some additional validation rules.",
"license": "MIT",
"authors": [
{
"name": "MallardDuck",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/validation": "^8.62 || ^9.33 || ^10.0"
},
"require-dev": {
"brianium/paratest": "^6.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"escapestudios/symfony2-coding-standard": "^3.11",
"friendsofphp/php-cs-fixer": "^3.14",
"nunomaduro/phpinsights": "^2.7",
"orchestra/testbench": "^6.24 || ^7.1 || ^8.0",
"phan/phan": "^5.2",
"php-coveralls/php-coveralls": "^2.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^0.12.99",
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MallardDuck\\ExtendedValidator\\ExtendedValidatorServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"MallardDuck\\ExtendedValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MallardDuck\\ExtendedValidator\\Tests\\": "tests"
}
},
"scripts": {
"check-style": "@phpcs -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "@phpcbf -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"infect": "XDEBUG_MODE=coverage infection --threads=4 --configuration=./infection.json.dist",
"para": "XDEBUG_MODE=coverage ./vendor/bin/paratest -p8",
"phpcbf": "./vendor/bin/phpcs --standard=PSR12",
"phpcs": "./vendor/bin/phpcs --standard=PSR12",
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit",
"test-all": [
"@check-style",
"@test",
"@infect"
],
"versions": "./vendor/bin/phpcs -p ./src/ ./tests/ --standard=PHPCompatibility --runtime-set testVersion 7.4"
}
}