-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.24 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
{
"name": "wyrihaximus/psr-3-callable-throwable-logger",
"description": "callable throwable decorator around a PSR-3 logger (to be used with react/promise and reactivex/rxphp)",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8 || ^7.4.7",
"psr/log": "^3 || ^2 || ^1",
"thecodingmachine/safe": "^2 || ^1.0 || ^0.1.16"
},
"require-dev": {
"wyrihaximus/psr-3-utilities": "^1.0",
"wyrihaximus/test-utilities": "^5 || ^3.7.3"
},
"autoload": {
"psr-4": {
"WyriHaximus\\PSR3\\CallableThrowableLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Tests\\PSR3\\CallableThrowableLogger\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}