-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
72 lines (72 loc) · 1.63 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
{
"name": "prooph/event-store-client",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"description": "Event Store Client for async TCP connections",
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph",
"Amp",
"Async"
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.1 || ^8.2",
"ext-json": "*",
"amphp/amp": "^3.0.2",
"amphp/http": "^v2.1.1",
"amphp/http-client": "^v5.1.0",
"amphp/byte-stream": "^v2.1.1",
"amphp/socket": "^v2.3.1",
"google/protobuf": "^v3.24.3",
"prooph/event-store": "dev-master",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"amphp/file": "^3.1.0",
"amphp/log": "^v2.0",
"amphp/parallel": "^v2.2.9",
"amphp/phpunit-util": "^3.0",
"doctrine/instantiator": "^2.0",
"friendsofphp/php-cs-fixer": "^v3.59.3",
"php-coveralls/php-coveralls": "2.7.0",
"phpspec/prophecy": "^1.17",
"phpunit/phpunit": "^9.6",
"prooph/php-cs-fixer-config": "^0.5.0"
},
"suggest": {
"ext/protobuf": "for protobuf PHP extension (pecl)"
},
"autoload": {
"psr-4": {
"Prooph\\EventStoreClient\\": "src/",
"GPBMetadata\\": "GPBMetadata/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStoreClient\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}