-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
150 lines (150 loc) · 7.09 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "morebec/orkestra",
"repositories": [
{
"options": {
"symlink": true
},
"type": "path",
"url": "components/orkestra-symfony-bundle"
}
],
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.2.*"
}
},
"description": "Orkestra is a library of infrastructure and architecture helpers for creating CQRS and Event Sourced applications",
"authors": [
{
"name": "jwillp",
"email": "jwilliam.perreault@morebec.com"
}
],
"require": {
"baldinof/roadrunner-bundle": "^2.0",
"cakephp/chronos": "^2.0",
"doctrine/annotations": "1.12.1",
"doctrine/dbal": "^3.0",
"doctrine/instantiator": "1.*",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"ext-pgsql": "*",
"ext-posix": "*",
"ext-sodium": "*",
"monolog/monolog": "^2.0",
"php": ">=7.4",
"php-di/phpdoc-reader": "2.*",
"phpunit/phpunit": "^9.5",
"ramsey/uuid": "^4.1",
"symfony/config": "5.*",
"symfony/console": "5.2.*",
"symfony/dependency-injection": "5.*",
"symfony/dotenv": "5.2.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.2.*",
"symfony/http-client": "5.2.*",
"symfony/http-kernel": "^5.0",
"symfony/lock": "5.*",
"symfony/monolog-bundle": "^3.7",
"symfony/process": "5.2.*",
"symfony/security-bundle": "5.2.*",
"symfony/validator": "5.2.*",
"symfony/yaml": "5.2.*"
},
"autoload-dev": {
"psr-4": {
"Tests\\Morebec\\OrkestraSymfonyBundle\\": "components/orkestra-symfony-bundle/Tests/",
"Tests\\Morebec\\Orkestra\\Collections\\": "components/orkestra-collections/tests",
"Tests\\Morebec\\Orkestra\\DateTime\\": "components/orkestra-datetime/tests",
"Tests\\Morebec\\Orkestra\\Enum\\": "components/orkestra-enum/tests",
"Tests\\Morebec\\Orkestra\\EventSourcing\\": "components/orkestra-event-sourcing/tests",
"Tests\\Morebec\\Orkestra\\EventSourcing\\Testing\\": "components/orkestra-event-sourcing-testing/tests",
"Tests\\Morebec\\Orkestra\\Exceptions\\": "components/orkestra-exceptions/tests",
"Tests\\Morebec\\Orkestra\\Framework\\": "components/orkestra-framework/tests/",
"Tests\\Morebec\\Orkestra\\Messaging\\": "components/orkestra-messaging/tests",
"Tests\\Morebec\\Orkestra\\Modeling\\": "components/orkestra-modeling/tests",
"Tests\\Morebec\\Orkestra\\Normalization\\": "components/orkestra-normalization/tests",
"Tests\\Morebec\\Orkestra\\PostgreSqlDocumentStore\\": "components/orkestra-postgresql-document-store/tests",
"Tests\\Morebec\\Orkestra\\PostgreSqlEventStore\\": "components/orkestra-postgresql-eventstore/tests",
"Tests\\Morebec\\Orkestra\\PostgreSqlPersonalInformationStore\\": "components/orkestra-postgresql-personal-information-store/tests",
"Tests\\Morebec\\Orkestra\\PostgreSqlTimeoutStorage\\": "components/orkestra-postgresql-timeout-storage/tests",
"Tests\\Morebec\\Orkestra\\Privacy\\": "components/orkestra-privacy/tests",
"Tests\\Morebec\\Orkestra\\Retry\\": "components/orkestra-retry/tests",
"Tests\\Morebec\\Orkestra\\SymfonyBundle\\": "components/orkestra-symfony-bundle/Tests/",
"Tests\\Morebec\\Orkestra\\Worker\\": "components/orkestra-worker/tests"
}
},
"require-dev": {
"coduo/php-matcher": "^6.0",
"ext-dom": "*",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.7",
"symfony/var-dumper": "5.*",
"symplify/composer-json-manipulator": "^9.2",
"symplify/monorepo-builder": "9.3.*"
},
"autoload": {
"psr-4": {
"Morebec\\OrkestraSymfonyBundle\\": "components/orkestra-symfony-bundle/.",
"Morebec\\Orkestra\\Collections\\": "components/orkestra-collections/src",
"Morebec\\Orkestra\\DateTime\\": "components/orkestra-datetime/src",
"Morebec\\Orkestra\\Enum\\": "components/orkestra-enum/src",
"Morebec\\Orkestra\\EventSourcing\\": "components/orkestra-event-sourcing/src",
"Morebec\\Orkestra\\EventSourcing\\Testing\\": "components/orkestra-event-sourcing-testing/src",
"Morebec\\Orkestra\\Exceptions\\": "components/orkestra-exceptions/src",
"Morebec\\Orkestra\\Framework\\": "components/orkestra-framework/src/",
"Morebec\\Orkestra\\Messaging\\": "components/orkestra-messaging/src",
"Morebec\\Orkestra\\Modeling\\": "components/orkestra-modeling/src",
"Morebec\\Orkestra\\Normalization\\": "components/orkestra-normalization/src",
"Morebec\\Orkestra\\OrkestraServer\\": "components/orkestra-server/src/",
"Morebec\\Orkestra\\PostgreSqlDocumentStore\\": "components/orkestra-postgresql-document-store/src",
"Morebec\\Orkestra\\PostgreSqlEventStore\\": "components/orkestra-postgresql-eventstore/src",
"Morebec\\Orkestra\\PostgreSqlPersonalInformationStore\\": "components/orkestra-postgresql-personal-information-store/src",
"Morebec\\Orkestra\\PostgreSqlTimeoutStorage\\": "components/orkestra-postgresql-timeout-storage/src",
"Morebec\\Orkestra\\Privacy\\": "components/orkestra-privacy/src",
"Morebec\\Orkestra\\Retry\\": "components/orkestra-retry/src",
"Morebec\\Orkestra\\SymfonyBundle\\": "components/orkestra-symfony-bundle/.",
"Morebec\\Orkestra\\Worker\\": "components/orkestra-worker/src"
}
},
"replace": {
"morebec/orkestra-collections": "2.5.6",
"morebec/orkestra-datetime": "2.5.6",
"morebec/orkestra-demo": "2.5.6",
"morebec/orkestra-enum": "2.5.6",
"morebec/orkestra-event-sourcing": "2.5.6",
"morebec/orkestra-event-sourcing-testing": "2.5.6",
"morebec/orkestra-exceptions": "2.5.6",
"morebec/orkestra-framework": "2.5.6",
"morebec/orkestra-messaging": "2.5.6",
"morebec/orkestra-modeling": "2.5.6",
"morebec/orkestra-normalization": "2.5.6",
"morebec/orkestra-postgresql-document-store": "2.5.6",
"morebec/orkestra-postgresql-eventstore": "2.5.6",
"morebec/orkestra-postgresql-personal-information-store": "2.5.6",
"morebec/orkestra-postgresql-timeout-storage": "2.5.6",
"morebec/orkestra-privacy": "2.5.6",
"morebec/orkestra-retry": "2.5.6",
"morebec/orkestra-symfony-bundle": "2.5.6",
"morebec/orkestra-worker": "2.5.6"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}