diff options
Diffstat (limited to 'bin/dompdf')
-rwxr-xr-x | bin/dompdf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/dompdf b/bin/dompdf new file mode 100755 index 0000000..d5e72e7 --- /dev/null +++ b/bin/dompdf @@ -0,0 +1,10 @@ +#!/usr/bin/env php +<?php + +// suppress Dompdf deprecation warnings +error_reporting(E_ALL ^ E_DEPRECATED); + +require dirname(__DIR__) . '/vendor/autoload.php'; + +new \DompdfCli\DompdfCli(); + |