-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (57 loc) · 1.58 KB
/
composer.json
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
56
57
58
{
"name": "bexiocom/prometheus_php",
"description": "A PHP instrumentation library for Prometheus compatible with PHP 5.5 5.6, 7.0 and 7.1.",
"type": "library",
"license": "MIT",
"homepage": "https://bexiocom.github.io/prometheus_php/",
"keywords": ["monitoring", "prometheus"],
"authors": [
{
"name": "Christian Haeusler",
"email": "christian.haeusler@bexio.com"
}
],
"support": {
"source": "https://github.com/bexiocom/prometheus_php",
"docs": "https://bexiocom.github.io/prometheus_php/"
},
"scripts": {
"check": ["@phpmd", "@phpcs", "@phpcpd", "@phpunit"],
"phpunit": "phpunit --coverage-html=build",
"phpmd": "phpmd src text phpmd.xml",
"phpcpd": "phpcpd src",
"phpcs": "phpcs --standard=PSR2 src tests",
"phpcs-fix": "phpcbf --standard=PSR2 src tests"
},
"autoload": {
"psr-4": {
"Bexio\\PrometheusPHP\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bexio\\PrometheusPHP\\Tests\\": "tests"
}
},
"require": {
"guzzlehttp/streams": "^3.0"
},
"require-dev": {
"ext-redis": "*",
"codeclimate/php-test-reporter": "^0.4.4",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^4.0",
"sebastian/phpcpd": "^2.0",
"squizlabs/php_codesniffer": "^3.0"
},
"archive": {
"exclude": [
"/*.xml*",
"/.*",
"/_*",
"/build",
"/tests",
"/vendor"
]
}
}