diff options
| author | Remi Collet <remi@remirepo.net> | 2018-06-11 12:17:54 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2018-06-11 12:17:54 +0200 | 
| commit | 10e9b83b9934486dd8c50fe0832332cd58fab26d (patch) | |
| tree | 11b1afedd53d7db3ed8fc952f5ac2b721395afe3 /src/Log | |
Initial packaging with cache, collection, core, database, database and utility sub-packages
Diffstat (limited to 'src/Log')
| -rw-r--r-- | src/Log/composer.json | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/src/Log/composer.json b/src/Log/composer.json new file mode 100644 index 0000000..a775a4f --- /dev/null +++ b/src/Log/composer.json @@ -0,0 +1,35 @@ +{ +    "name": "cakephp/log", +    "description": "CakePHP logging library with support for multiple different streams", +    "type": "library", +    "keywords": [ +        "cakephp", +        "log", +        "logging", +        "streams" +    ], +    "homepage": "https://cakephp.org", +    "license": "MIT", +    "authors": [ +        { +            "name": "CakePHP Community", +            "homepage": "https://github.com/cakephp/log/graphs/contributors" +        } +    ], +    "support": { +        "issues": "https://github.com/cakephp/cakephp/issues", +        "forum": "https://stackoverflow.com/tags/cakephp", +        "irc": "irc://irc.freenode.org/cakephp", +        "source": "https://github.com/cakephp/log" +    }, +    "require": { +        "php": ">=5.6.0", +        "cakephp/core": "^3.6.0", +        "psr/log": "^1.0.0" +    }, +    "autoload": { +        "psr-4": { +            "Cake\\Log\\": "." +        } +    } +} | 
