warn about remote fork config in setup and help
[phorkie.git] / src / phorkie / autoload.php
index 189cde48a7fc263232e8f64464221db94ddb6b2e..6441a1a71790fc8b7ab13494f701c7e5cb3589fd 100644 (file)
@@ -4,7 +4,14 @@
  *
  * @author Christian Weiske <cweiske@cweiske.de>
  */
-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__ . '/../'