-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.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
{
"name": "myonlinestore/event-sourcing",
"type": "library",
"description": "MyOnlineStore Event Sourcing base functionality",
"homepage": "https://github.com/MyOnlineStore/event-sourcing",
"license": "MIT",
"autoload": {
"psr-4": {
"MyOnlineStore\\EventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyOnlineStore\\EventSourcing\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/MyOnlineStore/message-dispatcher"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"doctrine/dbal": "^2.13 || ^3.1",
"psr/event-dispatcher": "^1.0",
"ramsey/uuid": "^3.9 || ^4.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"defuse/php-encryption": "^2.3",
"myonlinestore/coding-standard": "^4.0",
"myonlinestore/message-dispatcher": "^1.0",
"myonlinestore/php-devtools": "^0.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.17",
"vimeo/psalm": "^4.27"
},
"suggest": {
"defuse/php-encryption": "To use encrypting events",
"myonlinestore/message-dispatcher": "To use MessageDispatchingEventRepository"
}
}