-
Notifications
You must be signed in to change notification settings - Fork 88
/
composer.json
50 lines (50 loc) · 1.35 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
{
"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": ">=7.4",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4.2",
"phpstan/phpstan": "^0.12.52",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/extension-installer": "^1.0.5",
"squizlabs/php_codesniffer": "^3.5.8",
"doctrine/coding-standard": "^8.2",
"roave/security-advisories": "dev-latest",
"league/container": "^3.3.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": "2.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}