-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 911 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
45
46
47
48
{
"name": "phoole/logger",
"type": "library",
"license": "Apache-2.0",
"version": "1.1.0",
"description": "Slim, simple and full compatible PSR-3 Logger library for PHP",
"keywords": [
"phoole",
"library",
"php",
"logger",
"psr-3",
"swoole"
],
"authors": [
{
"name": "Hong Zhang",
"homepage": "https://github.com/phoole"
}
],
"require": {
"php": ">=7.2.0",
"phoole/base": "^1.0.20",
"psr/log": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"Phoole\\Logger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phoole\\Tests\\": "tests/"
}
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"minimum-stability": "dev",
"scripts": {
"test": "phpunit",
"check": "phpcs --standard=psr12 src/",
"format": "phpcbf --standard=psr12 src/"
}
}