forked from goksagun/elastic-apm-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.23 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
{
"name": "chq81/elastic-apm-bundle",
"description": "Elastic APM bundle",
"type": "symfony-bundle",
"authors": [
{
"name": "Christoph Quadt",
"email": "[email protected]"
},
{
"name": "Burak Bolat",
"email": "[email protected]"
}
],
"keywords": [
"elastic apm bundle"
],
"license": "MIT",
"require": {
"php": "^7.1 || ^8.0",
"nipwaayoni/elastic-apm-php-agent": "^7.5",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Chq81\\ElasticApmBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"symfony": {
"allow-contrib": "true",
"require": "4.4.* || 5.4.* || 6.0.*"
}
}
}