From 7dc187771389ad0fa80c154e4477154ec91a8692 Mon Sep 17 00:00:00 2001 From: Scott Dutton Date: Mon, 18 Mar 2019 18:49:09 +0000 Subject: [PATCH] 0.11.1 add another path for autoloader --- src/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/functions.php b/src/functions.php index fa2c363..511ad68 100644 --- a/src/functions.php +++ b/src/functions.php @@ -11,6 +11,7 @@ function findAutoLoader() __DIR__ . '/../vendor/autoload.php', // Vendor directory when installed with composer __DIR__ . '/../../../vendor/autoload.php', + __DIR__ . '/../../../../vendor/autoload.php', // Local install (without composer) __DIR__ . '/../autoload.php' ];