{ "name": "dnw/php-trueskill", "description": "Trueskill implementation by Moserware updated for PHP 8.2", "keywords": ["trueskill", "matchmaking", "ranking", "skill", "elo"], "require": { "php": "^8.2" }, "require-dev": { "phpunit/phpunit": "^10", "rector/rector": "^0.17", "phpstan/phpstan": "^1", "laravel/pint": "^1", "squizlabs/php_codesniffer": "*", "vimeo/psalm": "^5.14" }, "autoload": { "psr-4": { "DNW\\Skills\\": "src/" } }, "autoload-dev": { "psr-4": { "DNW\\Skills\\Tests\\": "tests/" } }, "scripts": { "test": "vendor/bin/phpunit tests --display-warnings", "test-coverage": "vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage --coverage-text --path-coverage --testdox-html output/test.html --log-junit output/test.xml ", "analyze": [ "@analyze-phpstan", "@analyze-phpcs", "@analyze-psalm" ], "analyze-phpstan":"vendor/bin/phpstan analyze --error-format=raw", "analyze-phpcs": "vendor/bin/phpcs --report=emacs --standard=PSR12 --exclude=Generic.Files.LineLength src", "analyze-psalm": "vendor/bin/psalm" } }