1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/config/push-notification.php

24 lines
547 B
PHP
Raw Permalink Normal View History

2016-02-29 11:31:58 +01:00
<?php
return [
2016-02-29 11:35:14 +01:00
'devNinjaIOS' => [
2016-02-29 11:31:58 +01:00
'environment' =>'development',
2016-08-07 11:52:32 +02:00
'certificate' =>storage_path().'/ninjaIOS.pem',
2016-02-29 11:31:58 +01:00
'passPhrase' =>'',
'service' =>'apns'
2016-02-29 11:35:14 +01:00
],
'ninjaIOS' => [
2016-02-29 11:31:58 +01:00
'environment' =>'production',
2016-08-07 11:52:32 +02:00
'certificate' =>storage_path().'/productionNinjaIOS.pem',
2016-02-29 11:31:58 +01:00
'passPhrase' =>'',
'service' =>'apns'
2016-02-29 11:35:14 +01:00
],
'ninjaAndroid' => [
2016-02-29 11:31:58 +01:00
'environment' =>'production',
2017-01-10 07:09:55 +01:00
'apiKey' =>env('FCM_API_TOKEN'),
'service' =>'gcm'
2016-02-29 11:35:14 +01:00
]
2016-02-29 11:31:58 +01:00
2016-07-21 16:57:57 +02:00
];