-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.29 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
{
"name": "tiime/newrelic-bundle",
"type": "symfony-bundle",
"description": "Integrate New Relic into Symfony",
"keywords": ["metric", "performance", "monitoring", "newrelic"],
"homepage": "https://github.com/Tiime-Software/TiimeNewRelicBundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "http://ekino.com"
},
{
"name": "Olivier Dolbeau",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"symfony/config": "^5.4|^6.4|^7.0",
"symfony/console": "^5.4|^6.4|^7.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0",
"symfony/event-dispatcher": "^5.4|^6.4|^7.0",
"symfony/http-kernel": "^5.4|^6.4|^7.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/phpunit-bridge": "^7.1",
"twig/twig": "^3.10",
"monolog/monolog": "^3.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": { "Tiime\\NewRelicBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tiime\\NewRelicBundle\\Tests\\": "tests/" }
}
}