-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.5 KB
/
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
44
45
46
47
48
49
50
51
{
"name": "clearfacts/datalog",
"description": "Tools for sending logs to Datadog",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "GijsPaulussen",
"email": "[email protected]"
}
],
"repositories": [
{ "type": "vcs", "url": "https://github.com/Clearfacts/cf-codestyle" }
],
"require": {
"php" : "^8",
"ext-json" : "*",
"monolog/monolog": "^2 || ^3",
"symfony/http-foundation": "^5.3 || ^6",
"datadog/dd-trace": "^0.79.0",
"symfony/event-dispatcher": "^4.4 || ^5.3 || ^6"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"clearfacts/cf-codestyle": "^3.1",
"symfony/messenger": "^5.4 || ^6",
"symfony/http-client": "^5.4 || ^6"
},
"suggest": {
"symfony/security": "If you want to log user-id's",
"symfony/messenger": "If you want to use the message serializer for correlation id's",
"symfony/http-client": "If you want to use the http client decorator for correlation id's"
},
"scripts": {
"set-up": [
"@copy-phpcs-config",
"vendor/bin/cf-codestyle clearfacts:codestyle:hooks-setup"
],
"copy-phpcs-config": "vendor/bin/cf-codestyle clearfacts:codestyle:copy-cs-config"
},
"autoload": {
"psr-4": {
"Datalog\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Datalog\\" : "tests/"
}
}
}