-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 932 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
{
"name": "previousnext/php-prometheus",
"description": "A PHP library for serializing to the prometheus text format.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kim Pepper",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/property-access": "^5.4|^6.2|^7.1",
"symfony/serializer": "^5.4|^6.2|^7.1"
},
"require-dev": {
"drupal/coder": "^8.3.16",
"phpunit/phpunit": "^9.5.28",
"phpspec/prophecy": "^1.16",
"symfony/phpunit-bridge": "^5.4|^6.2|^7.1"
},
"autoload": {
"psr-4": {"PNX\\Prometheus\\": "src/"}
},
"autoload-dev": {
"psr-4": {"PNX\\Prometheus\\Tests\\": "tests/"}
},
"config": {
"bin-dir": "bin/",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}