forked from RequestLab/onesignal-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 798 Bytes
/
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
{
"name": "birkof/onesignal-bundle",
"description": "Symfony integration of the norkunas/onesignal-php-api library",
"type": "symfony-bundle",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "birkof",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0",
"norkunas/onesignal-php-api": "^2.8",
"nyholm/psr7": "^1.4",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/http-client": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4|^5.0|^5.1"
},
"autoload": {
"psr-4": {
"Adelplace\\OneSignalBundle\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"vendor/norkunas/onesignal-php-api/src"
]
},
"config": {
"sort-packages": true
}
}