-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.18 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.18 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
55
56
57
58
59
{
"name": "logdash/php-sdk",
"description": "Modern observability platform SDK for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Logdash Team",
"email": "logdash.contact@gmail.com"
}
],
"keywords": [
"observability",
"monitoring",
"logging",
"tracing",
"metrics"
],
"homepage": "https://github.com/logdash-io/php-sdk",
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"autoload": {
"psr-4": {
"Logdash\\": "src/"
},
"files": [
"src/Sync/CreateLogSync.php",
"src/Metrics/CreateMetrics.php"
]
},
"autoload-dev": {
"psr-4": {
"Logdash\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs": "phpcs",
"cbf": "phpcbf",
"qa": {
"Codestyle": "@cs",
"Lint": "parallel-lint src tests",
"Static analyse": "@phpstan",
"Tests": "@test"
},
"qa:fix": {
"Codestyle": "@cbf"
}
}
}