-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"name": "remi-san/transaction-manager",
"description": "A simple transaction manager",
"license": "MIT",
"authors": [
{
"name": "Rémi San",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.10",
"squizlabs/php_codesniffer": "^2.0",
"phpspec/phpspec": "^2.2",
"henrikbjorn/phpspec-code-coverage": "^2.0",
"doctrine/dbal": "^2.5",
"doctrine/orm": "^2.5",
"evaneos/burrow": "^4.0",
"league/event": "^2.1",
"league/tactician": "^1.0"
},
"suggest": {
"doctrine/dbal": "To manage Doctrine DBAL transactions",
"doctrine/orm": "To manage Doctrine EntityManager transactions",
"evaneos/burrow": "To manage AMQP message broking transactionally",
"league/event": "To manage event emitting transactionally",
"league/tactician": "To manage command emitting transactionally"
},
"autoload": {
"psr-4": {
"RemiSan\\TransactionManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spec\\RemiSan\\TransactionManager\\": "tests/spec"
}
}
}