forked from siwymilek/RMSPushNotificationsBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.06 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
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
{
"name": "richsage/rms-push-notifications-bundle",
"type": "symfony-bundle",
"description": "Push notifications/messages for mobile devices",
"keywords": ["push", "notification", "bundle", "gcm", "c2dm", "ios", "apns", "blackberry", "mpns", "windowsphone"],
"homepage": "https://github.com/richsage/RMSPushNotificationsBundle",
"license": "MIT",
"authors": [
{
"name": "Rich Sage",
"email": "rich.sage@gmail.com",
"homepage": "http://www.richsage.co.uk/"
}
],
"require": {
"php": "^7.2 || ^8.0",
"kriswallsmith/buzz": "^1.0",
"nyholm/psr7": "^1.2",
"psr/log": "^1.1"
},
"require-dev": {
"symfony/symfony": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"suggest": {
"symfony/symfony": "To use as a bundle"
},
"autoload": {
"psr-0": { "RMS\\PushNotificationsBundle": "" }
},
"target-dir": "RMS/PushNotificationsBundle",
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}