-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
74 lines (74 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name" : "league/tactician-bundle",
"description" : "Bundle to integrate Tactician with Symfony projects",
"type" : "symfony-bundle",
"authors" : [
{
"name": "Rafael Dohms",
"homepage": "http://doh.ms"
},
{
"name": "Richard Tuin",
"homepage": "http://www.rtuin.nl/"
},
{
"name" : "Xander Smalbil",
"email" : "[email protected]"
},
{
"name": "Ross Tuck",
"email": "[email protected]"
}
],
"keywords" : [
"tactician",
"bundle",
"symfony"
],
"license" : [
"MIT"
],
"require" : {
"php": ">=7.2",
"league/tactician": "^1.0",
"league/tactician-logger": "^0.10|^0.11",
"league/tactician-container": "^2.0|^3.0",
"symfony/config": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^3.4|^4.4|^5.0|^6.0|^7.0"
},
"suggest": {
"symfony/console": "For debugging command-to-handler routing using the tactician:debug console command",
"symfony/validator": "For command validator middleware",
"symfony/security": "For command security middleware",
"league/tactician-doctrine": "For doctrine transaction middleware"
},
"autoload" : {
"psr-4" : {
"League\\Tactician\\Bundle\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"League\\Tactician\\Bundle\\Tests\\" : ["tests/", "tests/testapp/src/"]
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "~8.5",
"mockery/mockery": "~1.0",
"symfony/console": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/security-core": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/validator": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^3.4.31|^4.4|^5.0|^6.0|^7.0",
"symfony/security-bundle": "^3.4|^4.4|^5.0|^6.0|^7.0",
"matthiasnoback/symfony-config-test": "^4.2.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.2.1",
"phpspec/prophecy": "^1.18"
}
}