-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.3 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": "jitesoft/loggers",
"description": "A collection of PSR-3 loggers.",
"type": "library",
"require": {
"psr/log": ">=3.0.0",
"nesbot/carbon": "^2.62",
"php": ">=8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5",
"mikey179/vfsstream": "1.6.*",
"php-mock/php-mock-phpunit": "2.6.*",
"ext-pdo": "*",
"ext-json": "*"
},
"suggest": {
"ext-pdo": "Required to use the PDO Logger.",
"ext-json": "Required for most loggers using json parsing."
},
"license": "MIT",
"authors": [
{
"name": "Johannes Tegnér",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jitesoft\\Log\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jitesoft\\Log\\Tests\\": "tests/"
},
"files": [
"tests/StreamFilter.php"
]
},
"scripts": {
"test": [
"phpunit --configuration ./phpunit.xml --coverage-text --colors=never",
"phpcs --report=summary --standard=./ruleset.xml -p ./src"
],
"lint": [
"phpcs --report=full --standard=./ruleset.xml -p ./src"
]
}
}