-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 941 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 941 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
{
"name": "gyselroth/php-helper-log",
"description": "PHP logger wrapper",
"keywords": ["helper", "log"],
"homepage": "https://gyselroth.com",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "gyselroth",
"email": "mail@gyselroth.com",
"homepage": "http://www.gyselroth.com"
}
],
"require": {
"php": ">=7.4",
"monolog/monolog": "^1.17"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "7.5.16",
"phpstan/phpstan": "^0.12.4"
},
"autoload": {
"psr-4": {
"Gyselroth\\HelperLog\\": "src/Gyselroth/HelperLog/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"secure-http": false,
"process-timeout" : 0
},
"scripts": {
"test": "phpunit tests/"
}
}