-
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) · 829 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 829 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": "netolabs/simple-logger",
"description": "Basic and fast implementation of the PSR-3 logger interface",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ben Plunkett",
"email": "ben.plunkett@neto.com.au"
}
],
"autoload": {
"psr-4": {
"Neto\\Logger\\": "src/Neto/Logger"
}
},
"autoload-dev": {
"psr-4": {
"Neto\\Test\\Logger\\": "tests/Logger"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.3",
"ext-json": "*",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "7.5.*",
"squizlabs/php_codesniffer": "2.*"
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"scripts": {
"test": [
"phpunit --testdox"
],
"lint": [
"phpcs --standard=PSR2 src"
]
}
}