-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.49 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
{
"name": "whatwedo/monitor-bundle",
"type": "symfony-bundle",
"description": "Easy monitoring for symfony based applications.",
"license": "MIT",
"homepage": "https://whatwedo.github.io/MonitorBundle/",
"minimum-stability": "stable",
"authors": [
{
"name": "whatwedo GmbH",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.3|^7.0",
"symfony/serializer": "^6.3|^7.0"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^3.0",
"zenstruck/console-test": "^v1.1.0",
"whatwedo/php-coding-standard": "^1.0",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^6.3|^7.0",
"symfony/css-selector": "^6.3|^7.0",
"symfony/phpunit-bridge": "^6.3|^7.0",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.14",
"symfony/twig-bundle": "^6.3|^7.0",
"symfony/messenger": "^6.3|^7.0",
"symfony/mercure-bundle": "^0.3"
},
"autoload": {
"psr-4": {
"whatwedo\\MonitorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"whatwedo\\MonitorBundle\\Tests\\": "tests/"
}
},
"config": {
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}