1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/config/push-notification.php
David Bomba bc9f237c43
Update push-notification.php
Use Symphony updated GCM driver which supports FCM
2018-03-19 08:50:32 +11:00

24 lines
547 B
PHP

<?php
return [
'devNinjaIOS' => [
'environment' =>'development',
'certificate' =>storage_path().'/ninjaIOS.pem',
'passPhrase' =>'',
'service' =>'apns'
],
'ninjaIOS' => [
'environment' =>'production',
'certificate' =>storage_path().'/productionNinjaIOS.pem',
'passPhrase' =>'',
'service' =>'apns'
],
'ninjaAndroid' => [
'environment' =>'production',
'apiKey' =>env('FCM_API_TOKEN'),
'service' =>'gcm'
]
];