-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 991 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
36
{
"name": "dmt-software/command-bus-validator",
"description": "Tactician CommandBus middleware to validate commands using the Symfony Validator",
"keywords": ["tactician", "middleware", "symfony", "validator"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bas de Mes",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"league/tactician": "^1.0",
"symfony/validator": "^5.1"
},
"autoload": {
"psr-4": {
"DMT\\CommandBus\\": "src/"
}
},
"suggest": {
"doctrine/annotations": "Enables adding constraints using annotations",
"doctrine/cache": "Enables adding constraints using annotations"
},
"require-dev": {
"phpunit/phpunit": ">=7.2",
"doctrine/annotations": "^1.6"
},
"autoload-dev": {
"psr-4": {
"DMT\\Test\\CommandBus\\": "tests/"
}
}
}