-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathcomposer.json
116 lines (116 loc) · 3.24 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
111
112
113
114
115
116
{
"name": "prooph/proophessor-do-symfony",
"license": "MIT",
"type": "project",
"description": "Symfony CQRS + Event Sourcing sample app for prooph components",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
},
{
"name": "Malte Blättermann",
"email": "[email protected]"
},
{
"name": "Ralf Junghanns",
"email": "[email protected]"
},
{
"name": "Oskar Pfeifer-Bley",
"email": "[email protected]"
}
],
"keywords": [
"example",
"prooph",
"proophessor",
"symfony",
"bundle",
"cqrs",
"service bus",
"event sourcing",
"snapshots",
"integration"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"prooph/event-sourcing": "^5.2",
"prooph/event-store-bus-bridge": "^3.0",
"prooph/event-store-http-middleware": "^0.2.0",
"prooph/event-store-symfony-bundle": "^0.4",
"prooph/pdo-event-store": "^1.0",
"prooph/service-bus-symfony-bundle": "^0.6",
"sensio/framework-extra-bundle": "^5.1",
"symfony/asset": "^4.0",
"symfony/console": "^4.0",
"symfony/dotenv": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/monolog-bundle": "^3.1",
"symfony/psr-http-message-bridge": "^1.0",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/templating": "^4.0",
"symfony/twig-bundle": "^4.0",
"symfony/yaml": "^4.0",
"zendframework/zend-diactoros": "^1.7",
"zendframework/zend-mail": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^6.0",
"prooph/php-cs-fixer-config": "^0.3",
"symfony/debug": "^4.0",
"symfony/debug-pack": "^1.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Prooph\\ProophessorDo\\": "src/ProophessorDo"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\ProophessorDo\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"extra": {
"symfony": {
"id": "01BVA6BWNWT2VJPKJ79ZFP2SBK",
"allow-contrib": false
}
}
}