forked from thephpleague/tactician
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 940 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
37
38
{
"name": "league/tactician",
"description": "A small, flexible command bus. Handy for building service layers.",
"keywords": ["command", "command bus", "service layer"],
"license": "MIT",
"authors": [
{
"name": "Ross Tuck",
"homepage": "http://tactician.thephpleague.com"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.3",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"League\\Tactician\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Tactician\\Tests\\": "tests/"
},
"files": [
"tests/Fixtures/Command/CommandWithoutNamespace.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
}
}