diff options
| author | Remi Collet <fedora@famillecollet.com> | 2015-10-28 07:51:39 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2015-10-28 07:51:39 +0100 | 
| commit | cd49dddbe047114224caa56a8bedf938c2cd200d (patch) | |
| tree | 6abaa6b3943c885e185573db0ce66dee0678ecdd /php-phpspec-prophecy-autoload.php | |
| parent | b5992fe44144871f99bda2e7d4c74d0231a536e4 (diff) | |
php-phpspec-prophecy: fix autoloader
Diffstat (limited to 'php-phpspec-prophecy-autoload.php')
| -rw-r--r-- | php-phpspec-prophecy-autoload.php | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/php-phpspec-prophecy-autoload.php b/php-phpspec-prophecy-autoload.php index 1e8dfe4..473319b 100644 --- a/php-phpspec-prophecy-autoload.php +++ b/php-phpspec-prophecy-autoload.php @@ -1,11 +1,12 @@  <?php  /* Autoloader for phpspec/prophecy and its dependencies */ -$vendorDir = '/usr/share/php'; +// Rely on include_path as in PHPUnit dependencies + circular dependencies +  // Use Symfony autoloader  if (!isset($fedoraClassLoader) || !($fedoraClassLoader instanceof \Symfony\Component\ClassLoader\ClassLoader)) {      if (!class_exists('Symfony\\Component\\ClassLoader\\ClassLoader', false)) { -        require_once $vendorDir . '/Symfony/Component/ClassLoader/ClassLoader.php'; +        require_once 'Symfony/Component/ClassLoader/ClassLoader.php';      }      $fedoraClassLoader = new \Symfony\Component\ClassLoader\ClassLoader(); @@ -14,7 +15,7 @@ if (!isset($fedoraClassLoader) || !($fedoraClassLoader instanceof \Symfony\Compo  $fedoraClassLoader->addPrefix('Prophecy\\', dirname(__DIR__)); -// Depdencies (Rely on include_path as in PHPUnit dependencies + circular dependencies) +// Dependencies  require_once 'Doctrine/Instantiator/autoload.php';  require_once 'SebastianBergmann/Comparator/autoload.php';  require_once 'phpDocumentor/Reflection/DocBlock/autoload.php'; | 
