-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
53 lines (53 loc) · 1.18 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mikemix/tactician-module",
"description": "Laminas/Mezzio Module to use the League of Extraordinary Packages' Tactician library - flexible command bus implementation",
"require": {
"php": "^7.1 || ^8.0",
"league/tactician": "^1.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"league/tactician-doctrine": "^1.0",
"phpunit/phpunit": "^7.5.20 || ^9.3.8",
"doctrine/orm": "^2.5",
"squizlabs/php_codesniffer": "^3.6",
"laminas/laminas-mvc": "^3.1.1"
},
"keywords": [
"laminas framework",
"tactician",
"command bus",
"thephpleague"
],
"license": "MIT",
"authors": [
{
"name": "Michal Zukowski",
"homepage": "https://www.phpcontext.com"
},
{
"name": "Gary Hockin",
"homepage": "http://hock.in",
"role": "Trailblazer"
},
{
"name": "Witold Wasiczko",
"homepage": "https://github.com/snapshotpl"
}
],
"autoload": {
"psr-4": {
"TacticianModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TacticianModuleTest\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}