forked from cedricziel/symfony-messenger-pubsub-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 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
45
46
47
48
{
"name": "cedricziel/messenger-pubsub",
"description": "Bridging Symfony Messenger with Google Cloud Pub/Sub",
"type": "symfony-bridge",
"license": "MIT",
"authors": [
{
"name": "Cedric Ziel",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CedricZiel\\Symfony\\Messenger\\Bridge\\GcpPubSub\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": ">=7.2.5",
"google/cloud-pubsub": "^1.29",
"symfony/messenger": "^5.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/process": "^4.4|^5.0",
"symfony/property-access": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0"
},
"suggest": {
"ext-grpc": "Improved performance for gRPC connections",
"ext-protobuf": "Improved performance for gRPC connections"
},
"scripts": {
"test": "@php vendor/bin/simple-phpunit"
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}