forked from app-insights-php/app-insights-php-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.36 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": "app-insights-php/app-insights-php-bundle",
"description": "Microsoft App Insights Symfony bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"AppInsightsPHP\\Symfony\\AppInsightsPHPBundle\\": ""},
"exclude-from-classmap": [
"/Tests/"
]
},
"suggest": {
"app-insights-php/doctrine-dependency-logger": "Trace Doctrine DBAL queries as dependency metric type."
},
"require": {
"php": "~8.1 || ~8.2",
"app-insights-php/monolog-handler": "^0.3",
"app-insights-php/client": "^0.3",
"symfony/framework-bundle": "~3.4||~4.4||~5.4||~6",
"guzzlehttp/guzzle": "^7.4",
"twig/twig": "^1.2|^2|^3"
},
"require-dev": {
"app-insights-php/doctrine-dependency-logger": "^0.3",
"friendsofphp/php-cs-fixer": "^3.4",
"symfony/monolog-bundle": "~2||~3",
"phpunit/phpunit": "^10"
},
"scripts": {
"phpunit": [
"phpunit --colors=always"
],
"static:analyze": [
"php-cs-fixer fix --dry-run"
],
"test" : [
"@phpunit"
],
"cs:php:fix": [
"php-cs-fixer fix"
]
}
}