mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
6a41353a96
* revert error reporting * fix for non boolean output * Firebase notifications for Android
24 lines
545 B
PHP
24 lines
545 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' =>'fcm'
|
|
]
|
|
|
|
];
|