mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 12:07:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'phantomjs' => [
 | |
| 
 | |
|         /*
 | |
|         |--------------------------------------------------------------------------
 | |
|         | PhantomJS Secret
 | |
|         |--------------------------------------------------------------------------
 | |
|         |
 | |
|         | This enables the PhantomJS request to bypass client authorization.
 | |
|         |
 | |
|         */
 | |
| 
 | |
|         'secret' => env('PHANTOMJS_SECRET'),
 | |
| 
 | |
|         /*
 | |
|         |--------------------------------------------------------------------------
 | |
|         | PhantomJS Bin Path
 | |
|         |--------------------------------------------------------------------------
 | |
|         |
 | |
|         | The path to the local PhantomJS binary.
 | |
|         | For example: /usr/local/bin/phantomjs
 | |
|         | You can run which phantomjs to determine the value
 | |
|         |
 | |
|         */
 | |
| 
 | |
|         'bin_path' => env('PHANTOMJS_BIN_PATH'),
 | |
| 
 | |
|         /*
 | |
|         |--------------------------------------------------------------------------
 | |
|         | PhantomJS Cloud Key
 | |
|         |--------------------------------------------------------------------------
 | |
|         |
 | |
|         | Key for the https://phantomjscloud.com service
 | |
|         |
 | |
|         */
 | |
| 
 | |
|         'cloud_key' => env('PHANTOMJS_CLOUD_KEY')
 | |
| 
 | |
|     ]
 | |
| 
 | |
| ];
 |