forked from wernerdweight/RA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.3 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
{
"name": "wernerdweight/ra",
"type": "library",
"description": "PHP Array object with consistent and predictable API",
"keywords": [
"array",
"iterable",
"object"
],
"homepage": "https://github.com/wernerdweight/RA",
"license": "MIT",
"authors": [
{
"name": "Werner Dweight Solutions",
"email": "info@wds.blue"
}
],
"require": {
"php": ">=7.2.0",
"thecodingmachine/safe": "^1.0"
},
"require-dev": {
"wernerdweight/cs": "^1.4",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"suggest": {},
"autoload": {
"psr-0": {
"WernerDweight\\RA\\": ""
}
},
"target-dir": "WernerDweight/RA",
"scripts": {
"fix": "ecs check ./RA.php ./Exception/ ./Tests/ --config vendor/wernerdweight/cs/src/ecs.yaml --fix",
"phpstan": "phpstan analyse ./RA.php ./Exception/ ./Tests/ --level max",
"phpmd": "phpmd ./RA.php text vendor/wernerdweight/cs/phpmd.xml",
"ecs": "ecs check ./RA.php ./Exception/ --config vendor/wernerdweight/cs/src/ecs.yaml",
"ecs-fix": "ecs check ./RA.php ./Exception/ ./Tests/ --config vendor/wernerdweight/cs/src/ecs.yaml --fix",
"phpunit": "phpunit",
"victor": "victor"
}
}