From: Christian Weiske Date: Fri, 4 Jul 2014 05:30:05 +0000 (+0200) Subject: use lib/ as include path when PEAR-installed dependencies are in it X-Git-Tag: v0.4.0~32 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/8c586a69c21bfa036193b6ae6bfd5fd28dd7596f use lib/ as include path when PEAR-installed dependencies are in it --- 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__ . '/../'