-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.2 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
{
"name": "arnested/psr3-journald",
"type": "library",
"description": "PSR-3 logging to systemd's journald",
"keywords": ["psr3", "psr-3", "log", "logger", "systemd", "journald", "ffi"],
"homepage": "https://github.com/arnested/psr3-journald",
"license": "MIT",
"authors": [
{
"name": "Arne Jørgensen",
"email": "arne@arnested.dk",
"homepage": "https://arnested.dk"
}
],
"provide": {
"psr/log-implementation": "1.0.0"
},
"require": {
"php": ">=7.4",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"Arnested\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"phpstan/phpstan": "^0.12.14",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-symfony": "^0.12.33",
"phpstan/phpstan-deprecation-rules": "^0.12.6"
},
"config": {
"sort-packages": true,
"lock": false,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}