forked from gosuperscript/laravel-eventstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·61 lines (61 loc) · 1.59 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
{
"name": "digitalrisks/laravel-eventstore",
"description": "All things regarding integrating Greg Young's Event Store into Laravel",
"keywords": [
"digitalrisks",
"laravel-event-store"
],
"homepage": "https://github.com/digitalrisks/laravel-event-store",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Pawel Trauth",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/morrislaptop/eventstore-client.git"
}
],
"require": {
"php": "^7.1",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"illuminate/support": "5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
"ramsey/uuid": "^3.8 || ^4.0",
"rxnet/eventstore-client": "dev-ramsey-uuid-4"
},
"require-dev": {
"orchestra/testbench": "^5.1 || ^6.9",
"phpunit/phpunit": "^8.0",
"timacdonald/log-fake": "^1.4"
},
"autoload": {
"psr-4": {
"DigitalRisks\\LaravelEventStore\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DigitalRisks\\LaravelEventStore\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DigitalRisks\\LaravelEventStore\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}