-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
60 lines (60 loc) · 1.64 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": "eventsauce/laravel-eventsauce",
"description": "Integration support for EventSauce with the Laravel framework.",
"keywords": ["laravel", "event sourcing", "eventsauce"],
"license": "MIT",
"support": {
"issues": "https://github.com/EventSaucePHP/LaravelEventSauce/issues",
"source": "https://github.com/EventSaucePHP/LaravelEventSauce"
},
"authors": [
{
"name": "Dries Vints",
"homepage": "https://driesvints.com"
},
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"eventsauce/eventsauce": "^1.0|^2.0",
"illuminate/bus": "^8.0|^9.0",
"illuminate/container": "^8.0|^9.0",
"illuminate/queue": "^8.0|^9.0.0",
"illuminate/support": "^8.0|^9.0",
"ramsey/uuid": "^3.8|^4.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.3"
},
"suggest": {
"eventsauce/code-generation": "Generate commands and events with ease"
},
"autoload": {
"psr-4": {
"EventSauce\\LaravelEventSauce\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"EventSauce\\LaravelEventSauce\\EventSauceServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}