-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 954 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 954 Bytes
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
{
"name": "stefna/log",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "andreas@stefna.is"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"stefna/codestyle": "^1.12",
"stefna/di": "^1.0",
"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": "^6.0",
"bref/bref": "^1.7.47 || ^2.4.1"
},
"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/"
}
}