diff options
Diffstat (limited to 'phpspec-autoload.php')
-rw-r--r-- | phpspec-autoload.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/phpspec-autoload.php b/phpspec-autoload.php index 13e657f..f8fae7e 100644 --- a/phpspec-autoload.php +++ b/phpspec-autoload.php @@ -4,8 +4,13 @@ require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; \Fedora\Autoloader\Autoload::addPsr4('PhpSpec\\', __DIR__); -$vendorDir = stream_resolve_include_path('Symfony/Component/Console/Application.php'); -\Fedora\Autoloader\Autoload::addPsr4('Symfony\\Component\\', dirname(dirname($vendorDir))); +if ($f = stream_resolve_include_path('Symfony3/Component/Console/Application.php')) { + \Fedora\Autoloader\Autoload::addPsr4('Symfony\\Component\\', dirname(dirname($f))); +} else if ($f = stream_resolve_include_path('Symfony/Component/Console/Application.php')) { + \Fedora\Autoloader\Autoload::addPsr4('Symfony\\Component\\', dirname(dirname($f))); +} else { + die("Can't find Symfony Framework\n"); +} /* spec tree in current dir, when exists */ if (is_dir(getcwd().'/spec')) { |