forked from mikemix/TacticianModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.05 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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
43
44
45
46
47
{
"name": "mikemix/tactician-module",
"description": "ZF3 Module to use the League of Extraordinary Packages' Tactician library - flexible command bus implementation",
"require": {
"php": "^5.6 || ^7.0",
"league/tactician": "^1.0",
"zendframework/zend-mvc": "^3.1.1",
"psr/container": "^1.0"
},
"require-dev": {
"league/tactician-doctrine": "^1.0",
"phpunit/phpunit": "^5.7.27",
"doctrine/orm": "^2.5"
},
"keywords": [
"zend framework",
"zf3",
"tactician",
"command bus",
"thephpleague"
],
"license": "MIT",
"authors": [
{
"name": "Michal Zukowski",
"homepage": "https://www.phpcontext.com"
},
{
"name": "Gary Hockin",
"homepage": "http://hock.in",
"role": "Trailblazer"
}
],
"autoload": {
"psr-4": {
"TacticianModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TacticianModuleTest\\": "test/"
}
},
"suggests": {
"mikemix/mxdi-module": "To configure dependency injection in Zend Framework 2 using annotations"
}
}