-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "building5/apache-exporter",
"type": "library",
"description": "A library for exporting Apache status for Prometheus",
"keywords": ["apache", "prometheus"],
"license": "MIT",
"homepage": "https://github.com/building5/apache-exporter-php",
"authors": [
{
"name": "David M. Lee, II",
"email": "leedm777@yahoo.com"
}
],
"require": {
"php": ">=7.1",
"jimdo/prometheus_client_php": "^0.9.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.2",
"ext-apc": "*"
},
"autoload": {
"psr-4": {
"ApacheExporter\\": "src"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p .",
"cs-fix": "phpcbf --colors ./src .",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}