-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 961 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
{
"name": "sourceability/coding-standard",
"type": "phpcodesniffer-standard",
"description": "Sourceability coding standards for reuse.",
"autoload": {
"psr-4": {
"Sourceability\\CodingStandard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\CodingStandard\\Tests\\": "tests/",
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src/"
}
},
"require": {
"php": "^7.1 || ^8.0",
"squizlabs/php_codesniffer": "^3.8",
"slevomat/coding-standard": "^7.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^7.4 || ^9.3",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"grifart/phpstan-oneline": "^0.4.2",
"ekino/phpstan-banned-code": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5"
}
}