-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "morebec/orkestra-event-sourcing-testing",
"description": "Orkestra component with utilities for easily testing event sourced systems based on Orkestra and Symfony",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "jwillp",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ramsey/uuid": "^4.1",
"morebec/orkestra-event-sourcing": "^2.4",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "5.2.*",
"coduo/php-matcher": "6.0.*"
},
"require-dev": {
"ext-dom": "*",
"phpstan/phpstan": "^0.12.7",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/var-dumper": "5.*",
"coduo/php-matcher": "^6.0"
},
"autoload": {
"psr-4": {
"Morebec\\Orkestra\\EventSourcing\\Testing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Morebec\\Orkestra\\EventSourcing\\Testing\\": "tests"
}
}
}