-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (35 loc) · 982 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
{
"name": "philiplb/phpprom",
"type": "library",
"description": "PHPProm is a library to measure some performance relevant metrics and expose them for Prometheus",
"keywords": ["silex", "performance measurement", "prometheus"],
"homepage": "https://github.com/philiplb/PHPProm",
"license": "MIT",
"authors": [
{
"name": "Philip Lehmann-Boehm",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "PHPProm\\": "src/PHPProm" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"sami/sami": "^3.3",
"phpunit/phpunit": "^4.8",
"eloquent/phony": "^0.14.1",
"satooshi/php-coveralls": "1.0.1",
"doctrine/dbal": "^2.5",
"silex/silex": "^2.0",
"symfony/browser-kit": "^3.1",
"symfony/css-selector": "^3.1"
}
}