From 8634961179fd52ab1b09cc454cdccab70cc08047 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 3 Mar 2017 14:59:51 +0100 Subject: php-phpspec: fix autoloader --- phpspec-autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpspec-autoload.php') diff --git a/phpspec-autoload.php b/phpspec-autoload.php index 4ab6dde..8124ff4 100644 --- a/phpspec-autoload.php +++ b/phpspec-autoload.php @@ -14,6 +14,6 @@ if (is_dir(getcwd().'/spec')) { // Dependencies (Rely on include_path as in PHPUnit dependencies + circular dependencies) require_once 'phpspec/php-diff/autoload.php'; -require_once 'Prophecy/autoload.php'; require_once 'SebastianBergmann/Exporter/autoload.php'; +require_once 'Prophecy/autoload.php'; // After exporter to avoid newer version require_once 'Doctrine/Instantiator/autoload.php'; -- cgit