forked from exercism/php-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 734 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 734 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
{
"name": "exercism/php-test-runner",
"type": "project",
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
"Exercism\\PhpTestRunner\\": "src/"
}
},
"require": {
"php": "^8.4",
"phpunit/phpunit": "^11.5.42"
},
"require-dev": {
"phpstan/phpstan": "^2.1.29",
"slevomat/coding-standard": "^8.24.0",
"squizlabs/php_codesniffer": "^4.0.0"
},
"scripts": {
"phpstan": "phpstan analyse --configuration phpstan.neon --memory-limit=2G",
"lint": "phpcs",
"lint:fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}