|
3 | 3 | "license": "MIT",
|
4 | 4 | "type": "library",
|
5 | 5 | "description": "Monolog extension to configure multiple loggers in the blink of an eye and access them from anywhere",
|
6 |
| - "keywords": ["monolog", "cascade", "monolog extension", "monolog plugin", "monolog utils", "logger", "log"], |
7 |
| - "authors": [ |
8 |
| - { |
9 |
| - "name": "Raphaël Antonmattei", |
10 |
| - "email": "rantonmattei@theorchard.com", |
11 |
| - "homepage": "https://github.com/rantonmattei" |
12 |
| - } |
| 6 | + "keywords": [ |
| 7 | + "monolog", |
| 8 | + "cascade", |
| 9 | + "monolog extension", |
| 10 | + "monolog plugin", |
| 11 | + "monolog utils", |
| 12 | + "logger", |
| 13 | + "log" |
13 | 14 | ],
|
14 |
| - "homepage": "https://github.com/theorchard/monolog-cascade", |
15 | 15 | "require": {
|
16 |
| - "php": "^7.0", |
17 |
| - "symfony/config": "^2.7 || ^3.0 || ^4.0 || ^5.0", |
18 |
| - "symfony/options-resolver": "^2.7 || ^3.0 || ^4.0 || ^5.0", |
19 |
| - "symfony/serializer": "^2.7 || ^3.0 || ^4.0 || ^5.0", |
20 |
| - "symfony/yaml": "^2.7 || ^3.0 || ^4.0 || ^5.0", |
21 |
| - "monolog/monolog": "^1.13 || ^2.0" |
| 16 | + "php": "^8.1", |
| 17 | + "symfony/config": "^6.1", |
| 18 | + "symfony/options-resolver": "^6.1", |
| 19 | + "symfony/serializer": "^6.1", |
| 20 | + "symfony/yaml": "^6.1", |
| 21 | + "monolog/monolog": "^3.2" |
| 22 | + }, |
| 23 | + "require-dev": { |
| 24 | + "mikey179/vfsstream": "^1.6", |
| 25 | + "phpunit/phpcov": "^8.2", |
| 26 | + "phpunit/phpunit": "^9.5", |
| 27 | + "php-coveralls/php-coveralls": "^2.5", |
| 28 | + "squizlabs/php_codesniffer": "^3.7", |
| 29 | + "phpstan/phpstan": "^1.8", |
| 30 | + "friendsofphp/php-cs-fixer": "^3.12", |
| 31 | + "michaelmoussa/php-coverage-checker": "^1.1" |
| 32 | + }, |
| 33 | + "scripts": { |
| 34 | + "security-check": [ |
| 35 | + "curl -sS https://get.symfony.com/cli/installer | bash -s -- --install-dir=/usr/local/bin", |
| 36 | + "symfony check:security" |
| 37 | + ], |
| 38 | + "test:unit:base": [ |
| 39 | + "php -d pcov.enabled=1 vendor/bin/phpunit --color=always" |
| 40 | + ], |
| 41 | + "test:unit": [ |
| 42 | + "@test:unit:base --log-junit build/junit.xml --coverage-xml build/coverage-xml --coverage-clover build/coverage-clover.xml" |
| 43 | + ], |
| 44 | + "test:unit:with-html-coverage": [ |
| 45 | + "@test:unit:base --coverage-html build/coverage-html" |
| 46 | + ], |
| 47 | + "test:unit:no-coverage": [ |
| 48 | + "@test:unit:base --no-coverage" |
| 49 | + ], |
| 50 | + "test:unit:coverage-checker": [ |
| 51 | + "php-coverage-checker build/coverage-clover.xml 100; # comment trick to allow composer params :D" |
| 52 | + ], |
| 53 | + "test:unit:check": [ |
| 54 | + "if [ -f build/coverage-clover.xml ]; then rm build/coverage-clover.xml; echo '>>> REMOVED OLD CLOVER.XML BUILD FILE!'; fi;", |
| 55 | + "@test:unit", |
| 56 | + "@test:unit:coverage-checker" |
| 57 | + ], |
| 58 | + "static-analysis": [ |
| 59 | + "phpstan analyse --ansi --memory-limit=-1" |
| 60 | + ] |
22 | 61 | },
|
23 | 62 | "autoload": {
|
24 | 63 | "psr-4": {
|
|
30 | 69 | "Cascade\\Tests\\": "tests/"
|
31 | 70 | }
|
32 | 71 | },
|
33 |
| - "require-dev": { |
34 |
| - "mikey179/vfsstream": "^1.6", |
35 |
| - "phpunit/phpcov": "~4.0.5", |
36 |
| - "phpunit/phpunit": "~6.5.14", |
37 |
| - "satooshi/php-coveralls": "~2.2", |
38 |
| - "squizlabs/php_codesniffer": "~3.0" |
39 |
| - }, |
40 |
| - "prefer-stable": true, |
41 |
| - "extra": { |
42 |
| - "branch-alias": { |
43 |
| - "dev-master": "0.5.x-dev" |
44 |
| - } |
45 |
| - } |
| 72 | + "prefer-stable": true |
46 | 73 | }
|
0 commit comments