-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
69 lines (69 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sourceability/instrumentation",
"type": "library",
"description": "Instrument commands/workers/custom code with datadog, newrelic, tideways, symfony.",
"homepage": "https://github.com/sourceability/instrumentation",
"license": "MIT",
"authors": [
{
"name": "Adrien Brault",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"datadog/dd-trace": "^0.82.0",
"ekino/newrelic-bundle": "^2.2",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/messenger": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/stopwatch": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symplify/easy-coding-standard": "^9.3"
},
"suggest": {
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/messenger": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/stopwatch": "^4.4 || ^5.4 || ^6.0 || ^7.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sourceability\\Instrumentation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\Instrumentation\\Test\\": "tests/"
}
},
"support": {
"issues": "https://github.com/sourceability/instrumentation/issues",
"source": "https://github.com/sourceability/instrumentation"
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
}
}