-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "cardyo/spiral-sentry-tracing",
"type": "library",
"description": "Integrate Sentry Distributed Tracing into Spiral Framework",
"license": "MIT",
"support": {
"issues": "https://github.com/cardyo-app/spiral-sentry-tracing/issues",
"source": "https://github.com/cardyo-app/spiral-sentry-tracing"
},
"require": {
"php": ">=8.1",
"spiral/sentry-bridge": "^2.3",
"sentry/sentry": "^4.9"
},
"require-dev": {
"psr/log": "^3.0",
"psr/event-dispatcher": "^1.0",
"spiral/testing": "^2.6",
"buggregator/trap": "^1.10",
"vimeo/psalm": "^0.3.14",
"spiral-packages/cqrs": "^2.3",
"spiral-packages/league-event": "^1.0",
"spiral/goridge": "^4.2",
"spiral/router": "^3.14"
},
"autoload": {
"psr-4": {
"Cardyo\\SpiralSentryTracing\\": "src/"
}
},
"authors": [
{
"name": "Leonid Meleshin (leon0399)",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}