-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 860 Bytes
/
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
{
"name": "twanhaverkamp/event-storage-in-redis-with-php",
"description": "Event Storage in Redis with PHP",
"version": "1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Twan Haverkamp",
"homepage": "https://github.com/twanhaverkamp",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"TwanHaverkamp\\EventStorageInRedisWithPhp\\": "src/",
"TwanHaverkamp\\EventStorageInRedisWithPhp\\Example\\": "example/"
}
},
"autoload-dev": {
"psr-4": {
"TwanHaverkamp\\EventStorageInRedisWithPhp\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"predis/predis": "^2.3",
"twanhaverkamp/event-sourcing-with-php": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.0",
"squizlabs/php_codesniffer": "^3.11"
}
}