forked from Ph3nol/NotificationPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.22 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
{
"name": "mammutgroup/notification-pusher",
"description": "Standalone PHP library for easy devices notifications push.",
"keywords": ["apple", "iphone", "apns", "android", "gcm", "firebase", "notification", "message", "push", "pusher"],
"homepage": "https://github.com/Turbo124/NotificationPusher",
"type": "standalone",
"license": "MIT",
"authors": [
{
"name": "David Bomba",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/Ph3nol/NotificationPusher/contributors"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5",
"symfony/options-resolver": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"symfony/process": "~2.3|~3.0",
"zendframework/zendservice-apple-apns": "^1.1.0",
"zendframework/zendservice-google-gcm": "1.*",
"doctrine/inflector": "~1.0",
"mammutgroup/pushok" : "^0.2"
},
"require-dev": {
"atoum/atoum": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"bin": ["np"],
"autoload": {
"psr-0": {
"Sly": "src/"
}
}
}