-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 816 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 816 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
{
"name": "joaomfrebelo/log4php",
"description": "A versatile logging framework for PHP. Forked from apache/log4php",
"keywords": [
"log",
"logging",
"php"
],
"homepage": "https://logging.apache.org/log4php/",
"type": "library",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/joaomfrebelo/log4php/issues",
"source": "https://github.com/joaomfrebelo/log4php",
"email": "joaomfrebelo@gmail.com"
},
"autoload": {
"classmap": [
"src/main/php/"
]
},
"require": {
"php": "8.0.* || 8.1.* || 8.2.* || 8.3.*",
"ext-libxml": "*",
"ext-simplexml": "*",
"mongodb/mongodb": "^1.15.0",
"ext-mongodb": "*",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.25",
"firephp/firephp-core": "^v0.5.3"
}
}