File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1212 }
1313 ],
1414 "require" : {
15- "php" : " >=5.3.0"
15+ "php" : " >=5.3.0" ,
16+ "dompdf/dompdf" : " dev-master"
1617 },
1718 "autoload" : {
1819 "psr-0" : {
1920 "DOMPDFModule" : " src/"
2021 }
2122 }
22- }
23+ }
Original file line number Diff line number Diff line change 3131 *
3232 * *Please note the trailing slash.*
3333 */
34- 'font_directory ' => __DIR__ . '/../vendor/dompdf/lib/fonts/ ' ,
34+ 'font_directory ' => __DIR__ . '/../../ vendor/dompdf/lib/fonts/ ' ,
3535
3636 /**
3737 * The location of the DOMPDF font cache directory
4141 * It contains the .afm files, on demand parsed, converted to php syntax and cached
4242 * This folder can be the same as DOMPDF_FONT_DIR
4343 */
44- 'font_cache_directory ' => __DIR__ . '/../vendor/dompdf/data/dompdf/cache/ ' ,
44+ 'font_cache_directory ' => __DIR__ . '/../../ vendor/dompdf/data/dompdf/cache/ ' ,
4545
4646 /**
4747 * The location of a temporary directory.
6464 * direct class use like:
6565 * $dompdf = new DOMPDF(); $dompdf->load_html($htmldata); $dompdf->render(); $pdfdata = $dompdf->output();
6666 */
67- 'chroot ' => realpath (__DIR__ . '/../vendor/dompdf/ ' ),
67+ 'chroot ' => realpath (__DIR__ . '/../../ vendor/dompdf/ ' ),
6868
6969 /**
7070 * Whether to use Unicode fonts or not.
285285 'ViewPdfStrategy ' => __NAMESPACE__ . '\Mvc\Service\ViewPdfStrategyFactory ' ,
286286 )
287287 ),
288- );
288+ );
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public function createService(ServiceLocatorInterface $serviceLocator)
7272 $ config = $ config ['dompdf_module ' ];
7373
7474 if (defined ('DOMPDF_DIR ' ) === false ) {
75- define ("DOMPDF_DIR " , __DIR__ . '/../../../vendor/dompdf ' );
75+ define ("DOMPDF_DIR " , __DIR__ . '/../../../../ vendor/dompdf ' );
7676 }
7777
7878 if (defined ('DOMPDF_INC_DIR ' ) === false ) {
You can’t perform that action at this time.
0 commit comments