mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			539 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			539 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'      =>'yourAPIKey',
 | 
						|
        'service'     =>'gcm'
 | 
						|
    ]
 | 
						|
 | 
						|
];
 |