-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 941 Bytes
/
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
{
"name": "geo6/mezzio-monolog",
"type": "library",
"description": "Mezzio Monolog ErrorHandler",
"license": "GPL-3.0-or-later",
"require": {
"monolog/monolog": "^1.24 || ^2.0",
"mezzio/mezzio": "^3.2",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-dependency-plugin": "^2.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.56",
"phpstan/phpstan-strict-rules": "^0.12.5",
"sentry/sdk": "^3.0",
"squizlabs/php_codesniffer": "^3.4"
},
"suggest": {
"sentry/sdk": "Allow sending log messages to Sentry.io"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Geo6\\Mezzio\\Monolog\\": "src/"
}
},
"scripts": {
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}