melai-melai/php-console-games

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "melai-melai/php-console-games",
    "description": "Some games in console",
    "keywords": ["php", "console", "console game"],
    "license": "MIT",
    "type": "project",
    "authors": [
        {
            "name": "melai-melai",
            "email": "melai1777@yandex.ru"
        }
    ],
    "bin": [
        "bin/php-console-games"
    ],
    "scripts": {
        "phpcs": "phpcs",
        "phpcbf": "phpcbf",
        "phpunit": "phpunit",
        "test": "phpunit tests"
    },
    "require": {
        "tightenco/collect": "^6.11",
        "wp-cli/php-cli-tools": "^0.11.11"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.5",
        "squizlabs/php_codesniffer": "*"
    },
    "autoload": {
        "psr-4": {
            "PhpConsoleGames\\": "src"
        },
        "files": [
            "src/Engine.php",
            "src/Games/HappyTicketGame.php",
            "src/Games/ParityGame.php"
        ]
    }
}