-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1 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
{
"name": "symsensor/actuator-doctrine-bundle",
"description": "Extension to monitor the doctrine connection for the actuator bundle",
"keywords": [ "actuator" ],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"symfony/framework-bundle": "^6.0 || ^7.0",
"symsensor/actuator-bundle": "^1.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.2",
"friendsofphp/php-cs-fixer": "^3.22",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^10.3",
"mikey179/vfsstream": "^1.6",
"symfony/browser-kit": "^6.0",
"symfony/yaml": "^6.0"
},
"autoload": {
"psr-4": {
"SymSensor\\ActuatorDoctrineBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SymSensor\\ActuatorDoctrineBundle\\Tests\\": "tests/"
}
}
}