Colonizator1/php-project-lvl1

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "colonizator/php-project-lvl1",
    "type": "library",
    "description": "first project on php - brain games",
    "keywords": [
        "cli",
        "games"
    ],
    "license": "MIT",
    "authors": [
        {
            "name": "Artur Kruchok",
            "email": "admin@govorim.by"
        }
    ],
    "require": {
        "php": ">7.2",
        "wp-cli/php-cli-tools": "0.*"
    },
    "bin": [
        "bin/brain-games",
        "bin/brain-even",
        "bin/brain-calc",
        "bin/brain-gcd",
        "bin/brain-progression",
        "bin/brain-prime"
    ],
    "autoload": {
        "files": [
            "src/Cli.php",
            "src/engine.php",
            "src/games/evenGame.php",
            "src/games/calcGame.php",
            "src/games/gcdGame.php",
            "src/games/progrGame.php",
            "src/games/primeGame.php"
        ]
    },
    "scripts": {
        "phpcs": "phpcs"
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "^3.5"
    }
}