From 74fcac38d0fa7ce318465934f208e37e42511541 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 11 May 2017 10:19:51 +0200 Subject: only allow a single Symfony version --- phpspec-autoload.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'phpspec-autoload.php') diff --git a/phpspec-autoload.php b/phpspec-autoload.php index f8fae7e..1fbcc5d 100644 --- a/phpspec-autoload.php +++ b/phpspec-autoload.php @@ -4,13 +4,7 @@ require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; \Fedora\Autoloader\Autoload::addPsr4('PhpSpec\\', __DIR__); -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"); -} +\Fedora\Autoloader\Autoload::addPsr4('Symfony\\Component\\', '/usr/share/php/@SYMFONY@/Component'); /* spec tree in current dir, when exists */ if (is_dir(getcwd().'/spec')) { -- cgit