composer.json 1.19 KB
{
    "name": "cakephp/bake",
    "description": "Bake plugin for CakePHP 3.0",
    "type": "cakephp-plugin",
    "keywords": ["cakephp", "bake"],
    "homepage": "https://github.com/cakephp/bake",
    "license": "MIT",
    "authors": [
        {
            "name": "CakePHP Community",
            "homepage": "https://github.com/cakephp/bake/graphs/contributors"
        }
    ],
    "support": {
        "issues": "https://github.com/cakephp/bake/issues",
        "forum": "http://stackoverflow.com/tags/cakephp",
        "irc": "irc://irc.freenode.org/cakephp",
        "source": "https://github.com/cakephp/bake"
    },
    "require": {
        "php": ">=5.5.9",
        "cakephp/cakephp": ">=3.2.0"
    },
    "require-dev": {
        "cakephp/cakephp-codesniffer": "dev-master",
        "phpunit/phpunit": "*"
    },
    "autoload": {
        "psr-4": {
            "Bake\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "BakeTest\\": "tests/test_app/Plugin/BakeTest/src",
            "Bake\\Test\\": "tests",
            "Bake\\Test\\App\\": "tests/test_app/App",
            "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
        }
    },
    "minimum-stability": "beta"
}