c7cfaef4085019b91124107c2402cae24236e9e1
[yaffs-website] / vendor / consolidation / log / composer.json
1 {
2     "name": "consolidation/log",
3     "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
4     "license": "MIT",
5     "authors": [
6         {
7             "name": "Greg Anderson",
8             "email": "greg.1.anderson@greenknowe.org"
9         }
10     ],
11     "autoload":{
12         "psr-4":{
13             "Consolidation\\Log\\": "src"
14         }
15     },
16     "autoload-dev": {
17         "psr-4": {
18             "Consolidation\\TestUtils\\": "tests/src"
19         }
20     },
21     "require": {
22         "php": ">=5.5.0",
23         "psr/log": "~1.0",
24         "symfony/console": "^2.8|^3|^4"
25     },
26     "require-dev": {
27         "phpunit/phpunit": "4.*",
28         "g1a/composer-test-scenarios": "^1",
29         "satooshi/php-coveralls": "^2",
30         "squizlabs/php_codesniffer": "2.*"
31     },
32     "minimum-stability": "stable",
33     "scripts": {
34         "cs": "phpcs -n --standard=PSR2 src",
35         "cbf": "phpcbf -n --standard=PSR2 src",
36         "unit": "phpunit",
37         "lint": [
38             "find src -name '*.php' -print0 | xargs -0 -n1 php -l",
39             "find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
40         ],
41         "test": [
42             "@lint",
43             "@unit",
44             "@cs"
45         ],
46         "scenario": "scenarios/install",
47         "post-update-cmd": [
48             "create-scenario symfony4 'symfony/console:^4.0'",
49             "create-scenario symfony2 'symfony/console:^2.8' --platform-php '5.5' --no-lockfile"
50         ]
51     },
52     "extra": {
53         "branch-alias": {
54             "dev-master": "1.x-dev"
55         }
56     },
57     "config": {
58         "platform": {
59             "php": "5.6"
60         }
61     }
62 }