-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.2 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
{
"name": "jlis/php-prometheus",
"description": "A PHP client for Prometheus.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Julius Ehrlich",
"email": "[email protected]"
},
{
"name": "Julius Ehrlich",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jlis\\PhpPrometheus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jlis\\PhpPrometheus\\": "tests"
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jlis/prometheus_client_php"
}
],
"require": {
"php": ">=5.6.3",
"jimdo/prometheus_client_php": "dev-apcu"
},
"require-dev": {
"phpunit/phpunit": "5.7",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"suggest": {
"ext-redis": "Required if using Redis.",
"ext-apcu": "Required if using APCu."
}
}