-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 986 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
35
36
37
38
39
40
41
42
43
44
{
"name": "stefna/log",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"stefna/codestyle": "^1.12",
"monolog/monolog": "^3.0",
"bugsnag/bugsnag": "^3.15",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"phpstan/phpstan": "^1.0",
"symfony/console": "^5.4 || ^4.0",
"polus/adr": "3.2.0",
"polus/router": "^1.0.0",
"bref/bref": "^0.5 || ^1.0"
},
"autoload": {
"psr-4": {
"Stefna\\Logger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stefna\\Logger\\": "tests/"
}
},
"description": "Psr-3 log implementation for stefna.is",
"scripts": {
"check": "./vendor/bin/phpcs --standard=vendor/stefna/codestyle/library.xml src/",
"fix": "./vendor/bin/phpcbf --standard=vendor/stefna/codestyle/library.xml src/"
}
}