X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/eb1de6598347f0b00d13a4a8ba20c475d149b1fa..2a665e0f4eeb45c9d57df7dc7f9d853465b5fea9:/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__ . '/../'