composer.json 877 字节
{
    "name": "itsgoingd/clockwork",
    "description": "php dev tools in your browser",
    "keywords": ["debugging", "profiling", "logging", "laravel", "lumen", "slim", "devtools"],
    "homepage": "https://underground.works/clockwork",
    "license": "MIT",
    "authors": [
        {
            "name": "itsgoingd",
            "email": "itsgoingd@luzer.sk",
            "homepage": "https://twitter.com/itsgoingd"
        }
    ],
    "require": {
        "php": ">=5.6",
        "ext-json": "*"
    },
    "autoload": {
        "psr-4": {
            "Clockwork\\": "Clockwork/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
            ],
            "aliases": {
                "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
            }
        }
    }
}