{ "name": "emilybache/gilded-rose-refactoring-kata", "description": "A kata to practice refactoring, tests and polymorphism", "require": { "php": "^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": "^1.4" }, "scripts": { "checkcode": "php vendor/bin/phpcs src tests --standard=PSR12", "fixcode": "php vendor/bin/phpcbf src tests --standard=PSR12", "test": "php vendor/bin/phpunit", "tests": "php vendor/bin/phpunit", "test-coverage": "php vendor/bin/phpunit --coverage-html build/coverage", "check-cs": "php vendor/bin/ecs check", "fix-cs": "php vendor/bin/ecs check --fix", "phpstan": "php vendor/bin/phpstan analyse --ansi" } }