20 lines
580 B
PHP
20 lines
580 B
PHP
<?php
|
|
|
|
/**
|
|
* Entry point for legacy calls
|
|
*
|
|
* Devs not using composer autoload will have included this file directly.
|
|
* Keeping it as a wrapper allows to retain compatibility with legacy projects
|
|
* while allowing adjustments to the source to improve composer integration.
|
|
*/
|
|
|
|
define('FPDM_DIRECT', true);
|
|
|
|
require_once("fpdm/fpdm.php");
|
|
|
|
require_once("fpdm/filters/FilterASCIIHex.php");
|
|
require_once("fpdm/filters/FilterASCII85.php");
|
|
require_once("fpdm/filters/FilterFlate.php");
|
|
require_once("fpdm/filters/FilterLZW.php");
|
|
require_once("fpdm/filters/FilterStandard.php");
|