{
    "name": "cakephp/debug_kit",
    "description": "CakePHP Debug Kit",
    "license": "MIT",
    "type": "cakephp-plugin",
    "keywords": [
        "cakephp",
        "debug",
        "kit",
        "dev"
    ],
    "authors": [
        {
            "name": "Mark Story",
            "homepage": "https://mark-story.com",
            "role": "Author"
        },
        {
            "name": "CakePHP Community",
            "homepage": "https://github.com/cakephp/debug_kit/graphs/contributors"
        }
    ],
    "homepage": "https://github.com/cakephp/debug_kit",
    "support": {
        "issues": "https://github.com/cakephp/debug_kit/issues",
        "forum": "https://stackoverflow.com/tags/cakephp",
        "irc": "irc://irc.freenode.org/cakephp",
        "source": "https://github.com/cakephp/debug_kit"
    },
    "require": {
        "php": ">=8.1",
        "cakephp/cakephp": "^5.1",
        "composer/composer": "^2.7.7",
        "doctrine/sql-formatter": "^1.1.3"
    },
    "require-dev": {
        "cakephp/authorization": "^3.0",
        "cakephp/cakephp-codesniffer": "^5.0",
        "phpunit/phpunit": "^10.5.32 || ^11.1.3 || ^12.0.9"
    },
    "suggest": {
        "ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
    },
    "autoload": {
        "psr-4": {
            "DebugKit\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
            "DebugKit\\TestApp\\": "tests/test_app/",
            "DebugKit\\Test\\": "tests/",
            "DebugkitTestPlugin\\": "tests/test_app/Plugin/DebugkitTestPlugin/src/"
        }
    },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    },
    "scripts": {
        "cs-check": "phpcs",
        "cs-fix": "phpcbf",
        "phpstan": "tools/phpstan analyse",
        "stan": [
            "tools/phpstan analyse",
            "tools/psalm"
        ],
        "stan-baseline": "tools/phpstan --generate-baseline",
        "psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
        "stan-setup": "phive install",
        "test": "phpunit"
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}
