-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
56 lines (56 loc) · 1.75 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "enlitepro/enlite-monolog",
"description": "Monolog integration to Laminas",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Evgeny Shpilevsky",
"email": "[email protected]"
}
],
"keywords": [
"Laminas",
"Monolog"
],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"laminas": {
"component": "EnliteMonolog",
"config-provider": "EnliteMonolog\\ConfigProvider"
}
},
"require": {
"php": "^7.1 || ^8.0",
"container-interop/container-interop": "^1.0",
"monolog/monolog": "^1.3 || ^2.0",
"laminas/laminas-stdlib": "^3",
"laminas/laminas-servicemanager": "^3"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "^3.0",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^7.5.20 || ^8.5.2 || ^9.5.6",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload": {
"psr-4": {
"EnliteMonolog\\": "src/EnliteMonolog"
}
},
"autoload-dev": {
"psr-4": {
"EnliteMonologTest\\": "test/unit"
}
},
"scripts": {
"lint:beautify": "vendor/bin/phpcbf --standard=PSR2 --extensions=php -v --ignore=*/vendor/* .",
"lint:style": "vendor/bin/phpcs --standard=PSR2 --extensions=php -v --ignore=*/vendor/* .",
"lint:syntax": "vendor/bin/parallel-lint --exclude vendor --exclude test/integration/vendor .",
"test:coverage": "vendor/bin/phpunit --coverage-text",
"test:mutations": "XDEBUG_MODE=coverage vendor/bin/infection && cat infection.txt",
"test:units": "vendor/bin/phpunit"
}
}