-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
60 lines (60 loc) · 1.32 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
{
"name": "prooph/event-store-http-client",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"description": "Event Store HTTP Client",
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph"
],
"prefer-stable": true,
"require": {
"php": "^7.4",
"ext-json": "*",
"php-http/discovery": "^1.9.1",
"php-http/httplug": "^2.2",
"php-http/message": "^1.8.0",
"php-http/message-factory": "^1.0.2",
"prooph/event-store": "dev-master"
},
"require-dev": {
"phpspec/prophecy": "^1.11.1",
"phpunit/phpunit": "^9.1",
"doctrine/instantiator": "^1.3.1",
"guzzlehttp/guzzle": "^6.5.5",
"php-coveralls/php-coveralls": "^2.2",
"php-http/guzzle6-adapter": "^2.0.1",
"prooph/php-cs-fixer-config": "^0.3.1",
"vimeo/psalm": "^3.12.2"
},
"autoload": {
"psr-4": {
"Prooph\\EventStoreHttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStoreHttpClient\\": "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
}
}