-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.21 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "flotzilla/logger",
"description": "PSR-3 logger implementation",
"keywords": ["logger", "logging", "log"],
"type": "library",
"require": {
"php": "^7.3",
"psr/log": "^1.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpstan/phpstan": "^0.12.14",
"phpbench/phpbench": "@dev"
},
"license": "MIT",
"authors": [
{
"name": "flotzilla",
"email": "null.0.byte@gmail.com",
"role": "Developer",
"homepage": "http://lazy-tech.net"
}
],
"autoload": {
"psr-4": {
"flotzilla\\Logger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"flotzilla\\Logger\\Test\\": "tests"
}
},
"scripts": {
"test": [
"phpunit --configuration phpunit.xml --testsuite tests"
],
"test_mock": [
"phpunit --configuration phpunit.xml --testsuite mock"
],
"stan": [
"vendor/bin/phpstan analyse -l 4 -c phpstan.neon.dist src"
],
"bench": [
"vendor/bin/phpbench run benchmarks --report=aggregate"
]
}
}