forked from Gartok/RMSPushNotificationsBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.11 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
{
"name": "opwoco/rms-push-notifications-bundle",
"type": "symfony-bundle",
"version": "1.1.0",
"description": "Push notifications/messages for mobile devices",
"keywords": [
"push",
"notification",
"bundle",
"android",
"amazon",
"adm",
"gcm",
"fcm",
"c2dm",
"ios",
"apns",
"blackberry",
"mpns",
"windowsphone"
],
"homepage": "https://github.com/richsage/RMSPushNotificationsBundle",
"license": "MIT",
"authors": [
{
"name": "Rich Sage",
"email": "[email protected]",
"homepage": "http://www.richsage.co.uk/"
}
],
"require": {
"php": ">=7.2.0",
"kriswallsmith/buzz": "*",
"gedmo/doctrine-extensions": "2.4.*",
"psr/log": "^1.0",
"web-token/jwt-signature-algorithm-ecdsa": "^1.3",
"web-token/jwt-key-mgmt": "^1.3",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"symfony/symfony": "3.*"
},
"suggest": {
"symfony/symfony": "To use as a bundle"
},
"autoload": {
"psr-0": {
"RMS\\PushNotificationsBundle": ""
}
},
"target-dir": "RMS/PushNotificationsBundle"
}