-
-
Notifications
You must be signed in to change notification settings - Fork 274
/
composer.json
58 lines (58 loc) · 1.47 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
55
56
57
58
{
"name": "sly/notification-pusher",
"description": "Standalone PHP library for easy devices notifications push.",
"keywords": [
"apple",
"iphone",
"apns",
"android",
"gcm",
"notification",
"message",
"push",
"pusher"
],
"homepage": "https://github.com/Ph3nol/NotificationPusher",
"type": "standalone",
"license": "MIT",
"authors": [
{
"name": "Cédric Dugat",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/Ph3nol/NotificationPusher/contributors"
}
],
"require": {
"php": ">=5.6",
"ext-ctype": "*",
"symfony/options-resolver": ">=2.3,<5",
"symfony/console": ">=2.3,<6",
"symfony/process": ">=2.3,<5",
"zendframework/zendservice-apple-apns": "~1.4",
"zendframework/zendservice-google-gcm": "~2.1",
"zendframework/zend-validator": "^2.12",
"doctrine/inflector": "~1.1",
"symfony/filesystem": ">=2.3,<5",
"symfony/debug": ">=2.3,<5"
},
"require-dev": {
"atoum/atoum": "^3.1",
"atoum/stubs": "^2.5",
"symfony/var-dumper": ">=2.3,<5",
"atoum/visibility-extension": "^1.3"
},
"config": {
"bin-dir": "bin"
},
"bin": [
"np"
],
"autoload": {
"psr-4": {
"Sly\\": "src/Sly/"
}
}
}