-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1015 Bytes
/
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
{
"name": "jeckel-lab/command-dispatcher-bundle",
"description": "Command Dispatcher as a symfony bundle",
"type": "symfony-bundle",
"require": {
"php": "^7.2 || ^8.0",
"symfony/dependency-injection": "^4.3 || ^5.0",
"symfony/http-kernel": "^4.3 || ^5.1",
"jeckel-lab/command-dispatcher": "^0.4",
"symfony/config": "^4.3 || ^5.0",
"symfony/doctrine-bridge": "^4.3 || ^5.0",
"doctrine/orm": "^2.7"
}
,
"require-dev": {
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^4.3.1",
"phpmd/phpmd": "^2.9",
"squizlabs/php_codesniffer": "^3.5",
"phpro/grumphp": "^0.19 || ^1.2.0"
},
"license": "MIT",
"authors": [
{
"name": "Julien Mercier-Rojas",
"email": "julien@jeckel-lab.fr"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"JeckelLab\\CommandDispatcherBundle\\": "src/"
}
}
}