forked from jphooiveld/EventSauceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.72 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
{
"name": "jphooiveld/eventsauce-bundle",
"type": "symfony-bundle",
"description": "EventSauce Bundle",
"keywords": [
"EventSauce",
"Event sourcing",
"Symfony",
"Bundle"
],
"license": "MIT",
"authors": [
{
"name": "Jan Peter Hooiveld",
"email": "[email protected]"
},
{
"name": "Duncan de Boer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"eventsauce/eventsauce": "^1.0",
"eventsauce/doctrine-message-repository": "dev-version/1.0.0",
"symfony/console": "^4.2|^5.0",
"symfony/messenger": "^4.2|^5.0",
"symfony/config": "^4.2|^5.0",
"symfony/dependency-injection": "^4.2|^5.0",
"symfony/http-kernel": "^4.2|^5.0"
},
"require-dev": {
"doctrine/dbal": "^2.6.0",
"roave/security-advisories": "dev-master",
"symfony/framework-bundle": "^4.2|^5.0",
"symfony/phpunit-bridge": "^5.0",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-symfony": "^0.12.6",
"phpstan/phpstan-deprecation-rules": "^0.12.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.19",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/yaml": "^5.3"
},
"suggest": {
"symfony/console": "Using symfony console to create event sourcing table",
"symfony/messenger": "Using symfony messenger as event bus"
},
"autoload": {
"psr-4": {
"Jphooiveld\\Bundle\\EventSauceBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}