-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 968 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 968 Bytes
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
{
"name": "arty/php-coding-standard",
"description": "Static analysis tools config for PHP projects, by arty.",
"type": "phpcodesniffer-standard",
"license": "MIT",
"require": {
"php": "^8.4",
"squizlabs/php_codesniffer": "^4.0",
"slevomat/coding-standard": "^8.24",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpat/phpat": "^0.12.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"jangregor/phpstan-prophecy": "^2.2",
"phpspec/prophecy-phpunit": "^2.4",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.0 || ^12.4"
},
"autoload": {
"psr-4": {
"ArtyCodingStandard\\": "src/ArtyCodingStandard"
}
},
"autoload-dev": {
"psr-4": {
"ArtyCodingStandard\\": "tests/ArtyCodingStandard"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}