forked from Jimdo/prometheus_client_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 926 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
39
40
{
"name": "taxibeat/prometheus_client_php",
"authors": [
{
"name": "Joscha",
"email": "[email protected]"
},
{
"name": "Jan Brauer",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.2",
"symfony/polyfill-apcu": "^1.6",
"friendsofphp/php-cs-fixer": "2.14.2"
},
"require-dev": {
"phpunit/phpunit": "7.5.6"
},
"scripts": {
"lint": "php -n vendor/bin/php-cs-fixer fix --ansi"
},
"suggest": {
"ext-redis": "Required if using Redis.",
"ext-apc": "Required if using APCu."
},
"autoload": {
"psr-0": {
"Prometheus\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Test\\Prometheus\\": "tests/"
}
},
"license": "Apache-2.0"
}