mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01: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')
|
||
|
|
||
|
]
|
||
|
|
||
|
];
|