-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.27 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
{
"name": "prezent/push-bundle",
"type": "library",
"description": "Symfony bundle to sent push notifications through various providers",
"keywords": ["push", "mobile", "symfony", "bundle", "pushwoosh", "onesignal"],
"homepage": "https://www.prezent.nl",
"require": {
"php": ">=7.4|>=8.0"
},
"require-dev": {
"gomoob/php-pushwoosh": "^1.1",
"norkunas/onesignal-php-api": "^2.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "@stable",
"symfony/http-client": "^5.4|^6.4|^7.0",
"symfony/console": "^5.4|^6.4|^7.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0"
},
"suggest": {
"doctrine/orm": "To use a database to store the push receivers in",
"gomoob/php-pushwoosh": "To sent notifications through Pushwoosh",
"norkunas/onesignal-php-api": "To sent notifications through OneSignal"
},
"license": "MIT",
"authors": [
{
"name": "Robert-Jan Bijl",
"email": "[email protected]"
},
{
"name": "Prezent Internet B.V.",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Prezent\\PushBundle\\": "src/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}