-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "league/tactician-doctrine",
"description": "Plugins for Tactician commands using Doctrine, like wrapping every command in a transaction",
"keywords": ["tactician", "doctrine", "command bus", "transactions"],
"homepage": "https://github.com/thephpleague/tactician-doctrine",
"license": "MIT",
"authors": [
{
"name": "Ross Tuck"
}
],
"require": {
"php" : ">=7.4",
"league/tactician": "dev-master",
"doctrine/dbal": "^2.5 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"doctrine/orm": "~2.5",
"phpstan/phpstan": "^0.12.3",
"doctrine/coding-standard": "^8.2"
},
"suggest": {
"doctrine/orm": "Required if you need to use ORM Transaction Middleware"
},
"autoload": {
"psr-4": {
"League\\Tactician\\Doctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Tactician\\Doctrine\\Tests\\": "tests"
}
}
}