-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
110 lines (110 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "prooph/service-bus-symfony-bundle",
"description": "",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "kontakt@codeliner.ws",
"homepage": "http://getprooph.org"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
},
{
"name": "Malte Blättermann",
"email": "malte.blaettermann@googlemail.com"
},
{
"name": "Ralf Junghanns",
"email": "ralf.junghanns@gmail.com"
},
{
"name": "Oskar Pfeifer-Bley",
"email": "oskar@programming-php.net"
}
],
"keywords": [
"prooph",
"Messaging",
"CQRS",
"Symfony",
"Bundle",
"Service Bus",
"Event Bus",
"Query Bus",
"Message Bus",
"DDD",
"PHP"
],
"support": {
"issues": "https://github.com/prooph/service-bus-symfony-bundle/issues",
"source": "https://github.com/prooph/service-bus-symfony-bundle",
"docs": "http://getprooph.org/"
},
"autoload": {
"psr-4": {
"Prooph\\Bundle\\ServiceBus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Bundle\\ServiceBus\\": "test"
}
},
"require": {
"php": "^7.1",
"symfony/config": "~3.3|^4.0",
"symfony/dependency-injection": "~3.3|^4.0",
"symfony/http-kernel": "~3.3|^4.0",
"prooph/service-bus": "~6.0",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"prooph/bookdown-template": "^0.2.3",
"phpspec/prophecy": "^1.7",
"react/promise": "^2.5",
"friendsofphp/php-cs-fixer": "~2.0",
"prooph/php-cs-fixer-config": "^0.2",
"symfony/framework-bundle": "~3.3|^4.0",
"phpstan/phpstan": "^0.9",
"php-coveralls/php-coveralls": "^2.1"
},
"suggest": {
"react/promise": "^2.5 for using the query bus",
"symfony/stopwatch": "~3.3|^4.0",
"symfony/framework-bundle": "~3.3|^4.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --no-coverage",
"test-coverage": "phpunit",
"docs": "bookdown doc/bookdown.json"
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"benchmark",
"build",
"phpunit.xml*",
"test"
]
}
}