From 8c586a69c21bfa036193b6ae6bfd5fd28dd7596f Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 4 Jul 2014 07:30:05 +0200 Subject: [PATCH] use lib/ as include path when PEAR-installed dependencies are in it --- src/phorkie/autoload.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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__ . '/../' -- 2.30.2