Major updates

This commit is contained in:
root
2018-06-11 13:43:21 -04:00
commit a8c090e288
181 changed files with 22768 additions and 0 deletions

24
config/snappy.php Normal file
View File

@ -0,0 +1,24 @@
<?php
return array(
'pdf' => array(
'enabled' => true,
'binary' => '/usr/bin/wkhtmltopdf --print-media-type --dpi 72',
'timeout' => false,
'options' => array(
'print-media-type' => true
),
'env' => array(),
),
'image' => array(
'enabled' => true,
'binary' => '/usr/local/bin/wkhtmltoimage',
'timeout' => false,
'options' => array(),
'env' => array(),
),
);