From c8f0920dc65d88e80db1e0481eb39fb31115d7c2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 15 Dec 2015 07:34:39 +0100 Subject: php-solarium: fix for old symfony (epel) --- php-solarium-autoload.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'php-solarium-autoload.php') diff --git a/php-solarium-autoload.php b/php-solarium-autoload.php index ad48221..b8be4e0 100644 --- a/php-solarium-autoload.php +++ b/php-solarium-autoload.php @@ -15,4 +15,8 @@ if (!isset($fedoraClassLoader) || !($fedoraClassLoader instanceof \Symfony\Compo $fedoraClassLoader->addPrefix('Solarium\\', dirname(__DIR__)); // dependencies -require_once $vendorDir . '/Symfony/Component/autoload.php'; +if (file_exists($vendorDir . '/Symfony/Component/autoload.php')) { + require_once $vendorDir . '/Symfony/Component/autoload.php'; +} else { + require_once $vendorDir . '/Symfony/autoload.php'; +} -- cgit