1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/config/push-notification.php

24 lines
537 B
PHP
Raw 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-07-21 16:57:57 +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-07-21 16:57:57 +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',
'apiKey' =>'yourAPIKey',
'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
];