-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "levinriegner/craft-push-notifications",
"description": "Enable sending push notifications from Craft",
"type": "craft-plugin",
"version": "0.5.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft push notifications"
],
"support": {
"docs": "https://github.com/levin-riegner/craft-push-notifications",
"issues": "https://github.com/levin-riegner/craft-push-notifications/issues"
},
"license": "MIT",
"authors": [
{
"name": "Levinriegner",
"homepage": "https://levinriegner.com"
},
{
"name": "Ohmycode",
"homepage": "https://www.ohmycode.cat"
}
],
"require": {
"php": "^8.1",
"craftcms/cms": "^4.0.0",
"edamov/pushok": "^0.14.3",
"nicmart/string-template": "^0.1.1",
"chasegiunta/craft-jason": "^3.0",
"kreait/firebase-php": "^7.5",
"sly/notification-pusher": "^3.0"
},
"autoload": {
"psr-4": {
"levinriegner\\craftpushnotifications\\": "src/"
}
},
"extra": {
"patches": {
"sly/notification-pusher": [
"patches/sly-notification-pusher-src-sly-notificationpusher-collection-abstractcollection-php.patch"
]
},
"name": "Craft push notifications",
"handle": "craft-push-notifications",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/levin-riegner/craft-push-notifications/master/CHANGELOG.md",
"components": {
"notification": "levinriegner\\craftpushnotifications\\services\\Notification"
},
"class": "levinriegner\\craftpushnotifications\\CraftPushNotifications"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ohdonpiano/NotificationPusher.git"
},
{
"type": "vcs",
"url": "https://github.com/ohdonpiano/ZendService_Apple_Apns.git"
},
{
"type": "vcs",
"url": "https://github.com/ohdonpiano/ZendService_Google_Gcm.git"
}
],
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
},
"require-dev": {
"craftcms/rector": "dev-main",
"symplify/vendor-patches": "^11.2"
}
}