{
    "name": "cakephp/migrations",
    "description": "Database Migration plugin for CakePHP based on Phinx",
    "license": "MIT",
    "type": "cakephp-plugin",
    "keywords": [
        "cakephp",
        "migrations",
        "cli"
    ],
    "authors": [
        {
            "name": "CakePHP Community",
            "homepage": "https://github.com/cakephp/migrations/graphs/contributors"
        }
    ],
    "homepage": "https://github.com/cakephp/migrations",
    "support": {
        "issues": "https://github.com/cakephp/migrations/issues",
        "forum": "https://stackoverflow.com/tags/cakephp",
        "irc": "irc://irc.freenode.org/cakephp",
        "source": "https://github.com/cakephp/migrations"
    },
    "require": {
        "php": ">=8.1",
        "cakephp/cache": "^5.2.9",
        "cakephp/database": "^5.2.9",
        "cakephp/orm": "^5.2.9",
        "robmorgan/phinx": "0.16.10"
    },
    "require-dev": {
        "cakephp/bake": "^3.3",
        "cakephp/cakephp": "^5.2.9",
        "cakephp/cakephp-codesniffer": "^5.0",
        "phpunit/phpunit": "^10.5.5 || ^11.1.3 || ^12.2.4"
    },
    "suggest": {
        "cakephp/bake": "If you want to generate migrations.",
        "dereuromark/cakephp-ide-helper": "If you want to have IDE suggest/autocomplete when creating migrations."
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Migrations\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Blog\\": "tests/test_app/Plugin/Blog/src/",
            "Cake\\Test\\": "./vendor/cakephp/cakephp/tests/",
            "Migrations\\Test\\": "tests/",
            "Migrator\\": "tests/test_app/Plugin/Migrator/src/",
            "SimpleSnapshot\\": "tests/test_app/Plugin/SimpleSnapshot/src/",
            "TestApp\\": "tests/test_app/App/",
            "TestBlog\\": "tests/test_app/Plugin/TestBlog/src/"
        }
    },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    },
    "scripts": {
        "check": [
            "@cs-check",
            "@stan",
            "@test"
        ],
        "cs-check": "phpcs -p",
        "cs-fix": "phpcbf -p",
        "phpstan": "tools/phpstan analyse",
        "stan": "@phpstan",
        "stan-baseline": "tools/phpstan --generate-baseline",
        "stan-setup": "phive install",
        "lowest": "validate-prefer-lowest",
        "lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
        "test": "phpunit",
        "test-coverage": "phpunit --coverage-clover=clover.xml"
    }
}
