trueskill/composer.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2016-05-24 11:54:03 +00:00
{
2022-07-05 13:33:34 +00:00
"name": "dnw/php-trueskill",
2023-08-04 06:56:47 +00:00
"description": "Trueskill implementation by Moserware updated for PHP 8.2",
"keywords": ["trueskill", "matchmaking", "ranking", "skill", "elo"],
2016-05-24 11:54:03 +00:00
"require": {
2023-08-04 06:56:47 +00:00
"php": "^8.2"
2016-05-24 11:54:03 +00:00
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"vimeo/psalm": "^5.21.1",
"phpmetrics/phpmetrics": "^3.0-dev",
"phpunit/phpunit": "^10.5"
2016-05-24 11:54:03 +00:00
},
"autoload": {
"psr-4": {
2022-07-05 13:33:34 +00:00
"DNW\\Skills\\": "src/"
2016-05-24 11:54:03 +00:00
}
},
"autoload-dev": {
"psr-4": {
2022-07-05 13:33:34 +00:00
"DNW\\Skills\\Tests\\": "tests/"
2016-05-24 11:54:03 +00:00
}
2023-08-01 13:35:44 +00:00
},
"scripts": {
"test": "phpunit",
"document": "phpDocumentor",
2024-02-02 11:04:31 +00:00
"benchmark": "phpbench run --report=default --output=build-artifact",
"metrics": "vendor/bin/phpmetrics --config=phpmetrics.json",
"lint": [
"phplint",
"phpcs"
],
"static": [
2023-08-01 13:35:44 +00:00
"@analyze-phpstan",
"@analyze-psalm"
2023-08-01 13:35:44 +00:00
],
2023-08-04 07:03:28 +00:00
"analyze-phpstan":"vendor/bin/phpstan analyze --error-format=raw",
2023-08-04 07:30:40 +00:00
"analyze-psalm": "vendor/bin/psalm --no-cache",
"all": [
"@test",
"@document",
"@benchmark",
"@lint",
"@static"
]
2016-05-24 11:54:03 +00:00
}
2022-07-05 13:55:47 +00:00
}