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

23 lines
540 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',
'certificate'=>app_path().'/certs/ninjaIOS.pem',
'passPhrase' =>'',
'service' =>'apns'
2016-02-29 11:35:14 +01:00
],
'ninjaIOS' => [
2016-02-29 11:31:58 +01:00
'environment' =>'production',
'certificate'=>app_path().'/certs/productionNinjaIOS.pem',
'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
];