-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.15 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
{
"name": "wizaplace/elastic-apm-symfony",
"type": "symfony-bundle",
"description": "Wizaplace Elastic APM Wrapper for Symfony",
"keywords": [
"Elastic APM"
],
"homepage": "https://github.com/wizaplace/elastic-apm-symfony",
"license": "MIT",
"authors": [
{
"name": "Wizacha DevTeam",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Wizacha\\ElasticApmBundle\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Wizacha\\ElasticApmBundle\\Tests\\": "tests/"
}
},
"require": {
"symfony/config": ">=4.4",
"symfony/dependency-injection": ">=4.4",
"symfony/http-kernel": ">=4.4",
"wizaplace/elastic-apm-wrapper": "^0.4.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"infection/infection": "^0.15.3",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.27",
"phpstan/phpstan-deprecation-rules": "^0.12.4",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
}
}