-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.74 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
{
"name": "stickee/instrumentation",
"description": "Stickee instrumentation module - monitor application performance and statistics.",
"keywords": [
"monitoring",
"instrumentation"
],
"homepage": "https://www.github.com/stickeeuk/instrumentation",
"readme": "README.md",
"license": "MIT",
"autoload": {
"psr-4": {
"Stickee\\Instrumentation\\": "src/",
"Stickee\\Instrumentation\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-protobuf": "*",
"open-telemetry/exporter-otlp": "^1.1",
"open-telemetry/opentelemetry-auto-laravel": "^1.0.0",
"open-telemetry/opentelemetry-auto-psr18": "^1.0",
"open-telemetry/sdk": "^1.1@beta"
},
"require-dev": {
"aws/aws-sdk-php": "^3.323",
"orchestra/testbench": "^8.0 || ^9.0",
"pda/pheanstalk": "^5.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"php-mock/php-mock-mockery": "^1.4.1"
},
"extra": {
"laravel": {
"providers": [
"Stickee\\Instrumentation\\Laravel\\Providers\\InstrumentationServiceProvider",
"Stickee\\Instrumentation\\Laravel\\Providers\\OpenTelemetryServiceProvider"
],
"aliases": {
"Instrument": "Stickee\\Instrumentation\\Laravel\\Facades\\Instrument"
}
}
},
"minimum-stability": "beta",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"tbachert/spi": true
}
}
}