-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name": "pusher/pusher-http-laravel",
"description": "[DEPRECATED] A Pusher bridge for Laravel",
"license": "MIT",
"keywords": ["laravel", "pusher", "http", "api", "php-pusher-server", "rest", "realtime", "trigger", "publish", "events"],
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "^5.5|^6.0|^7.0",
"illuminate/support": "^5.5|^6.0|^7.0",
"graham-campbell/manager": "^3.0|^4.0",
"pusher/pusher-php-server": "^3.3|^4.0"
},
"require-dev": {
"graham-campbell/analyzer": "^2.4",
"graham-campbell/testbench": "^4.0|^5.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.5|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Pusher\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pusher\\Tests\\Laravel\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "4.2-dev"
},
"laravel": {
"providers": [
"Pusher\\Laravel\\PusherServiceProvider"
],
"aliases": {
"Pusher": "Pusher\\Laravel\\Facades\\Pusher"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}