1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/config/pdf.php
2017-06-04 17:54:50 +03:00

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')
]
];