mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 09:07:35 -05:00 
			
		
		
		
	Also adds other package config settings however they have not yet been called in ConfigServiceProvider
		
			
				
	
	
		
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return array(
 | 
						|
 | 
						|
	// The default gateway to use
 | 
						|
	'default' => 'paypal',
 | 
						|
 | 
						|
	// Add in each gateway here
 | 
						|
	'gateways' => array(
 | 
						|
		'paypal' => array(
 | 
						|
			'driver' => 'Paypal_Express',
 | 
						|
			'options' => array(
 | 
						|
				'solutionType' => '',
 | 
						|
				'landingPage' => '',
 | 
						|
				'headerImageUrl' => ''
 | 
						|
			)
 | 
						|
		)
 | 
						|
	)
 | 
						|
); |