-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.25 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
{
"name": "decahedron/laravel-app-events",
"description": "Manage application-wide events for SOAs with Google Cloud PubSub",
"license": "MIT",
"authors": [
{
"name": "Leo Sjöberg",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.3",
"google/cloud": "0.*",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
"kainxspirits/laravel-pubsub-queue": "~0.4.0|~0.5.0|~0.6.0|~0.7.0|~0.8.0",
"google/protobuf": "^3.6.0",
"illuminate/bus": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Decahedron\\AppEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Decahedron\\AppEvents\\Tests\\Proto\\": "tests/fixtures/Decahedron/AppEvents/Tests/Proto"
}
},
"extra": {
"laravel": {
"dont-discover": [
"Kainxspirits\\PubSubQueue\\PubSubQueueServiceProvider"
],
"providers": [
"Decahedron\\AppEvents\\AppEventsProvider"
]
}
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^8.2"
}
}