-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (36 loc) · 952 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
{
"name": "mhndev/pusher",
"description": "single interface for using multiple pusher service",
"keywords": ["pusher", "pusher.com", "pubnub", "FCM", "GCM", "Nginx PushStream Module"],
"homepage": "http://github.com/mhndev/pusher",
"license": "MIT",
"authors": [
{
"name": "majid abdolhosseini",
"email": "majid@mhndev.com",
"homepage":"http://mhndev.com"
}
],
"autoload": {
"psr-4": {
"mhndev\\pusher\\": "src"
}
},
"require": {
"php": ">=5.4.0",
"php-gcm/php-gcm": "dev-master",
"paragraph1/php-fcm": "^0.7.0",
"pusher/pusher-php-server": "~2.6.0",
"pubnub/pubnub": "~3.8.3",
"swiftmailer/swiftmailer": "^5.4",
"phpmailer/phpmailer": "^5.2"
},
"require-dev":{
"phpunit/phpunit": "6.*",
"mockery/mockery" : "0.9.5",
"satooshi/php-coveralls": "dev-master",
"raveren/kint": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}