-
Notifications
You must be signed in to change notification settings - Fork 178
/
composer.json
50 lines (50 loc) · 1.23 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
{
"name": "berkayk/onesignal-laravel",
"description": "OneSignal Push Wrapper Laravel",
"keywords": [
"onesignal",
"webpush",
"push",
"laravel",
"laravel 5"
],
"type": "library",
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "^6.2|^7.4.1|^7.2",
"illuminate/support": "~5.5|~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
"symfony/psr-http-message-bridge": "1.*|2.*|^7.0"
},
"require-dev": {
"vlucas/phpdotenv": "^2.2|^5.5"
},
"autoload": {
"psr-4": {
"Berkayk\\OneSignal\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Berkayk\\OneSignal\\OneSignalServiceProvider"
],
"aliases": {
"OneSignal": "Berkayk\\OneSignal\\OneSignalFacade"
}
}
},
"license": "MIT",
"authors": [
{
"name": "Berkay Kaya",
"email": "[email protected]",
"homepage": "http://berkaykaya.com"
},
{
"name": "Maykonn Welington Candido",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}