-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.4 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
50
51
52
53
54
55
{
"name": "g4/log",
"description": "Writes your logs to files, databases, search engines...",
"keywords": [
"log",
"logger",
"writer",
"debug"
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Dejan Samardzija",
"email": "samardzija.dejan@gmail.com"
},
{
"name": "Drasko Gomboc",
"email": "drasko.gomboc@gmail.com"
},
{
"name": "Ivan Krickovic",
"email": "ivan.krickovic@gmail.com"
}
],
"autoload": {
"psr-4": {"G4\\Log\\": "src/"}
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phpunit/phpunit": "9.*"
},
"require": {
"php" : ">=7.3",
"ext-json" : "*",
"ext-curl" : "*",
"g4/runner" : ">=0.26.1",
"g4/utility" : "*",
"g4/value-object" : "*",
"g4/version" : "^0.0.2",
"g4/constants" : "*"
},
"suggest": {
"elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server"
},
"scripts": {
"lint": [
"./vendor/bin/parallel-lint ./ --exclude vendor"
],
"unit-test": [
"php7.3 ./vendor/bin/phpunit -c test/phpunit.xml"
]
}
}