-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
55 lines (55 loc) · 1.53 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
{
"name": "eventsauce/eventsauce",
"description": "A pragmatic event sourcing library for PHP with a focus on developer experience.",
"license": "MIT",
"homepage": "https://eventsauce.io/",
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]"
}
],
"suggest": {
"eventsauce/code-generation": "Code generation for EventSauce",
"eventsauce/test-utilities": "Base test tooling for testing aggregates",
"eventsauce/doctrine-message-repository": "Doctrine implementation of the message repository"
},
"require": {
"php": "^8.0",
"eventsauce/clock": "^1.0",
"eventsauce/object-hydrator": "^0.4.2 | ^0.5 | ^1.0.0",
"psr/clock": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.8.6",
"phpunit/phpunit": "^9.5.23|^10.0|^11.0",
"nikic/php-parser": "^v4.10.4",
"symfony/yaml": "^5.0 | ^6.0 | ^7.0",
"friendsofphp/php-cs-fixer": "^3.0",
"ramsey/uuid": "^4.0",
"pestphp/pest": "^1.23"
},
"autoload": {
"psr-4": {
"EventSauce\\EventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PeventSauce\\": "tests"
},
"files": [
"./src/PestUtilities/functions.php"
]
},
"extra": {
"branch-alias": {
"dev-version/2.0": "2.x-dev"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}