diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-03-03 14:59:51 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2017-03-03 14:59:51 +0100 |
commit | 8634961179fd52ab1b09cc454cdccab70cc08047 (patch) | |
tree | 1d6d6494418e8ffe7a06537a9a20c6b22dce4f4e /phpspec-autoload.php | |
parent | fc7e95106730e27d97b471a39453e54dda99afde (diff) |
php-phpspec: fix autoloader
Diffstat (limited to 'phpspec-autoload.php')
-rw-r--r-- | phpspec-autoload.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |