-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1012 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
41
42
43
{
"name": "xmarcos/carbon-client-service-provider",
"description": "A Silex Service Provider for Carbon (Graphite's backend)",
"type": "library",
"license": "MIT",
"keywords": [
"log",
"silex",
"carbon",
"metrics",
"provider",
"graphite"
],
"authors": [
{
"name": "Marcos Sader",
"email": "xmarcos@gmail.com"
}
],
"support": {
"issues": "https://github.com/xmarcos/CarbonClientServiceProvider/issues"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"silex/silex" : "~1.1",
"xmarcos/carbon-client" : "~0.2"
},
"require-dev": {
"phpunit/phpunit" : "@stable",
"fabpot/php-cs-fixer" : "@stable"
},
"autoload": {
"psr-4": {
"xmarcos\\Silex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"xmarcos\\Silex\\": "tests/"
}
}
}