forked from berkayk/laravel-onesignal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1001 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
37
38
39
40
41
42
43
{
"name": "dipendentincloud/onesignal-laravel",
"description": "OneSignal Push Wrapper Laravel",
"keywords": ["onesignal", "webpush", "push", "laravel", "laravel 5", "lumen"],
"type": "library",
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "^6.2",
"illuminate/support": "4.*|5.*|6.*",
"symfony/psr-http-message-bridge": "1.*"
},
"require-dev": {
"vlucas/phpdotenv": "^2.2"
},
"autoload": {
"psr-4": {
"Dic\\OneSignal\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dic\\OneSignal\\OneSignalServiceProvider"
],
"aliases": {
"OneSignal": "Dic\\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
}