forked from AstrotechLabs/yii2-tactician
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.03 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": "dersonsena/yii2-tactician",
"description": "Yii 2 Command Bus pattern implementation",
"keywords": ["yii2", "framework", "command bus", "command handler", "cqrs", "service layer"],
"homepage": "https://github.com/dersonsena/yii2-command-bus",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Kilderson Sena",
"email": "[email protected]",
"role": "owner"
}
],
"require": {
"php": ">=7.4",
"league/tactician": "^1.1",
"yiisoft/yii2": "~2.0.41",
"yidas/yii2-bower-asset": "~2.0.13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"DersonSena\\Yii2Tactician\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"github-protocols": ["https"],
"sort-packages": true,
"process-timeout": 1800
}
}