forked from Superbalist/laravel-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 974 Bytes
/
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
{
"name": "superbalist/laravel-pubsub",
"description": "A Pub-Sub abstraction for Laravel",
"license": "MIT",
"authors": [
{
"name": "Superbalist.com a division of Takealot Online (Pty) Ltd",
"email": "info@superbalist.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/aditiapratama1231/php-pubsub-google-cloud.git"
}
],
"require": {
"php": ">=5.6.0",
"illuminate/support": "^5.4",
"superbalist/php-pubsub": "^1.0|^2.0",
"superbalist/php-pubsub-redis": "^1.0|^2.0",
"superbalist/php-pubsub-google-cloud": "dev-master",
"illuminate/console": "^5.4",
"superbalist/php-pubsub-http": "^1.0"
},
"autoload": {
"psr-4": {
"Superbalist\\LaravelPubSub\\": "src/",
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"mockery/mockery": "^0.9.5"
}
}