mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-11 14:20:24 +01:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "sam/theatrical",
|
|
"type": "project",
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.5",
|
|
"approvals/approval-tests": "^1.4",
|
|
"phpstan/phpstan": "^0.12.25",
|
|
"phpstan/phpstan-phpunit": "^0.12.8",
|
|
"symplify/easy-coding-standard": "^7.3",
|
|
"symplify/phpstan-extensions": "^7.3"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Sam Cranford",
|
|
"email": "sam@cranford.fr"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.2",
|
|
"ext-intl": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Theatrical\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"checkcode": "phpcs src tests --standard=PSR12",
|
|
"fixcode": "phpcbf src tests --standard=PSR12",
|
|
"test": "phpunit",
|
|
"tests": "phpunit",
|
|
"test-coverage": "phpunit --coverage-html build/coverage",
|
|
"check-cs": "ecs check src tests --ansi",
|
|
"fix-cs": "ecs check src tests --fix --ansi",
|
|
"phpstan": "phpstan analyse --ansi"
|
|
}
|
|
} |