This repository was archived by the owner on May 27, 2024. It is now read-only.
forked from DataDog/php-datadogstatsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.39 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "pdffiller/php-datadogstatsd",
"type": "library",
"description": "An extremely simple PHP datadogstatsd client",
"keywords": ["datadog", "monitoring", "logging", "statsd", "error-reporting", "check", "health"],
"homepage": "https://www.datadoghq.com/",
"license": "MIT",
"authors": [
{
"name": "Alex Corley",
"email": "anthroprose@gmail.com",
"role": "Developer"
},
{
"name": "Datadog",
"email": "dev@datadoghq.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0",
"ext-sockets": "*"
},
"support": {
"issues": "https://github.com/pdffiller/php-datadogstatsd/issues",
"source": "https://github.com/pdffiller/php-datadogstatsd"
},
"autoload": {
"psr-4": {
"DataDog\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/mt_rand_function_stubs.php",
"tests/socket_function_stubs.php"
],
"psr-4": {
"DataDog\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0.1",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"fix-lint": "phpcbf",
"lint": "phpcs",
"test": "vendor/bin/phpunit"
}
}