forked from bpolaszek/webpush-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
148 lines (148 loc) · 4.68 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "bentools/webpush-bundle",
"type": "symfony-bundle",
"description": "Send push notifications through Web Push Protocol to your Symfony users.",
"license": "MIT",
"authors": [
{
"name": "Beno!t POLASZEK",
"email": "bpolaszek@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.5.8 || ^7.4",
"minishlink/web-push": "^6.0.7 || ^7.0 || ^8.0 || ^9.0",
"symfony/http-kernel": "^5.4.20 || ^6.0 || ^7"
},
"require-dev": {
"bentools/doctrine-static": "1.0.x-dev",
"doctrine/dbal": "^2.9 || ^3.0",
"phpunit/phpunit": "^9.0",
"symfony/config": "^5.4 || ^6.0 || ^7",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7",
"symfony/routing": "^5.4 || ^6.0 || ^7",
"symfony/security-core": "^5.4 || ^6.0 || ^7",
"symfony/var-dumper": "^5.4 || ^6.0 || ^7",
"symfony/yaml": "^5.4 || ^6.0 || ^7",
"twig/twig": "^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"BenTools\\WebPushBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BenTools\\WebPushBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"keywords": [
"PushNotification",
"PushNotification bundle",
"PushSubsciption",
"PushSubsciption bundle",
"notification",
"notification bundle",
"notifications",
"notifications bundle",
"subscription",
"subscription bundle",
"subscriptions",
"subscriptions bundle",
"push",
"push bundle",
"push notification",
"push notification bundle",
"push notifications",
"push notifications bundle",
"push subscription",
"push subscription bundle",
"push subscriptions",
"push subscriptions bundle",
"webpush",
"webpush protocol",
"webpush bundle",
"webpush notification",
"webpush notification bundle",
"webpush notifications",
"webpush notifications bundle",
"webpush subscription",
"webpush subscription bundle",
"webpush subscriptions",
"webpush subscriptions bundle",
"web push",
"web push protocol",
"web push bundle",
"web push notification",
"web push notification bundle",
"web push notifications",
"web push notifications bundle",
"web push subscription",
"web push subscription bundle",
"web push subscriptions",
"web push subscriptions bundle",
"symfony PushNotification",
"symfony PushNotification bundle",
"symfony PushSubsciption",
"symfony PushSubsciption bundle",
"symfony notification",
"symfony notification bundle",
"symfony notifications",
"symfony notifications bundle",
"symfony subscription",
"symfony subscription bundle",
"symfony subscriptions",
"symfony subscriptions bundle",
"symfony push",
"symfony push bundle",
"symfony push notification",
"symfony push notification bundle",
"symfony push notifications",
"symfony push notifications bundle",
"symfony push subscription",
"symfony push subscription bundle",
"symfony push subscriptions",
"symfony push subscriptions bundle",
"symfony webpush",
"symfony webpush bundle",
"symfony webpush notification",
"symfony webpush notification bundle",
"symfony webpush notifications",
"symfony webpush notifications bundle",
"symfony webpush subscription",
"symfony webpush subscription bundle",
"symfony webpush subscriptions",
"symfony webpush subscriptions bundle",
"symfony web push",
"symfony web push bundle",
"symfony web push notification",
"symfony web push notification bundle",
"symfony web push notifications",
"symfony web push notifications bundle",
"symfony web push subscription",
"symfony web push subscription bundle",
"symfony web push subscriptions",
"symfony web push subscriptions bundle",
"flex",
"vapid",
"fcm",
"browser",
"chrome",
"firefox"
]
}