-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
60 lines (60 loc) · 1.4 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": "gdg-tangier/cloud-pubsub",
"description": "Google Cloud pub-sub for laravel",
"keywords": [
"GDG",
"php",
"Google",
"laravel",
"framework",
"publisher",
"subscriber",
"GDG Tangier",
"gdg-tangier",
"Google Cloud",
"event driven",
"laravel queue",
"microservices",
"laravel pub-sub",
"laravel pubsub",
"Google Cloud pub-sub",
"Google Cloud pubsub",
"Google Cloud Platform",
"Google Developer Group",
"event driven microservices",
"event driven microservices with laravel"
],
"license": "MIT",
"authors": [
{
"name": "Houssain Amrani",
"email": "[email protected]"
}
],
"require": {
"google/cloud-pubsub": "^1.38"
},
"require-dev": {
"orchestra/testbench": "^7.5"
},
"autoload": {
"psr-4": {
"GDGTangier\\PubSub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GDGTangier\\PubSub\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"GDGTangier\\PubSub\\CloudPubSubServiceProvider"
],
"aliases": {
"Publisher": "GDGTangier\\PubSub\\Publisher\\PublisherFacade"
}
}
}
}