diff options
author | Remi Collet <remi@remirepo.net> | 2017-10-05 16:22:07 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-10-05 16:22:07 +0200 |
commit | ae620b5e416e131cfcf371cd72747ae6b2fbcb63 (patch) | |
tree | e544eeb3c57f189db33e986cd9961248a5d74c19 /php-solarium-autoload.php | |
parent | 052615f6fa305ce7b2c44c8973080ac6749006d0 (diff) |
fix autoloader for Symfony 3, FTBFS from Koschei
Diffstat (limited to 'php-solarium-autoload.php')
-rw-r--r-- | php-solarium-autoload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/php-solarium-autoload.php b/php-solarium-autoload.php index f3c802d..5308326 100644 --- a/php-solarium-autoload.php +++ b/php-solarium-autoload.php @@ -6,8 +6,8 @@ require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; \Fedora\Autoloader\Autoload::addPsr4('Solarium\\', __DIR__); \Fedora\Autoloader\Dependencies::required(array( array( - '/usr/share/php/Symfony/Component/autoload.php', - '/usr/share/php/Symfony/autoload.php', + '/usr/share/php/Symfony3/Component/EventDispatcher/autoload.php', + '/usr/share/php/Symfony/Component/EventDispatcher/autoload.php', ), )); |