-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 967 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" : "xmarcos/carbon-client",
"description" : "A PHP client for Carbon (Graphite's backend) using the plaintext protocol.",
"type" : "library",
"license" : "MIT",
"keywords" : [
"log",
"metrics",
"graphite",
"carbon"
],
"authors" : [
{
"name" : "Marcos Sader",
"email" : "xmarcos@gmail.com"
}
],
"support" : {
"issues" : "https://github.com/xmarcos/CarbonClient/issues"
},
"prefer-stable" : true,
"minimum-stability" : "dev",
"require" : {
"php" : ">=5.4.0"
},
"require-dev" : {
"phpunit/phpunit" : "@stable",
"fabpot/php-cs-fixer" : "@stable"
},
"autoload" : {
"psr-4" : {
"xmarcos\\Carbon\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"xmarcos\\Carbon\\" : "tests/unit/"
}
}
}