mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"name": "emilybache/gilded-rose-refactoring-kata",
|
|
"description": "A kata to practice refactoring, tests and polymorphism",
|
|
"require": {
|
|
"php": "^7.3 || ^8.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"GildedRose\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"phpstan/phpstan": "^0.12.85",
|
|
"phpstan/phpstan-phpunit": "^0.12.18",
|
|
"symplify/easy-coding-standard": "^9.3",
|
|
"symplify/phpstan-extensions": "^9.3",
|
|
"approvals/approval-tests": "dev-Main"
|
|
},
|
|
"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",
|
|
"fix-cs": "ecs check --fix",
|
|
"phpstan": "phpstan analyse --ansi"
|
|
}
|
|
}
|