X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/46bdb6ae85c07babfee3eca688a7ac0211a69cab..8c586a69c21bfa036193b6ae6bfd5fd28dd7596f:/src/phorkie/autoload.php diff --git a/src/phorkie/autoload.php b/src/phorkie/autoload.php index 189cde4..6441a1a 100644 --- a/src/phorkie/autoload.php +++ b/src/phorkie/autoload.php @@ -4,7 +4,14 @@ * * @author Christian Weiske */ -if (file_exists(__DIR__ . '/../../lib/autoload.php')) { +if (file_exists(__DIR__ . '/../../lib/PEAR.php')) { + //phing-installed dependencies available ("phing collectdeps") + set_include_path( + __DIR__ . '/../' + . PATH_SEPARATOR . __DIR__ . '/../../lib/' + . PATH_SEPARATOR . '.' + ); +} else if (file_exists(__DIR__ . '/../../lib/autoload.php')) { //composer-installed dependencies available set_include_path( __DIR__ . '/../'