{
    "name": "innokassa/mdk",
    "description": "PHP Module Development Kit for Pangaea Server by Innokassa",
    "version": "2.1.0",
    "type": "library",
    "license": "MIT",
    "homepage": "https://innokassa.ru/",
    "authors": [
        {
            "name": "Buturlin Vitaliy (Byurrer)",
            "email": "byurrer@mail.ru",
            "homepage": "https://byurrer.ru/"
        },
        {
            "name": "Igor Kripak",
            "email": "drakosha99997@gmail.com"
        }
    ],
    "require": {
        "php": ">=7.1"
    },
    "autoload": {
        "psr-4": {
            "Innokassa\\MDK\\": "src"
        }
    },
    "require-dev":{
        "phpunit/phpunit": "^9",
        "squizlabs/php_codesniffer": "^3.6",
        "phpstan/phpstan": "^1.5"
    },
    "scripts": {
        "test-unit": "vendor/bin/phpunit --colors=always --coverage-html coverage-report-html --bootstrap tests/Unit/bootstrap.php tests/Unit/",
        "test-server": "vendor/bin/phpunit --colors=always --bootstrap tests/Server/bootstrap.php tests/Server/",
        "test-system": "vendor/bin/phpunit --colors=always --bootstrap tests/System/bootstrap.php tests/System/",
        "cs": "vendor/bin/phpcs --standard=PSR12 src/",
        "lint": "vendor/bin/phpstan analyse src"
    }
}
