summaryrefslogtreecommitdiffstats
path: root/phinx-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-06-06 07:40:58 +0200
committerRemi Collet <remi@remirepo.net>2017-06-06 07:40:58 +0200
commitfb1e279334dbd8f9bf310605b751433a73ae4d28 (patch)
treef9c80ecf5dcfb0e814d0cd6b0dfec2fe08bb57ec /phinx-autoload.php
parent2fb9f620b55a50369ba1ea2ebe12d16ab1543620 (diff)
allow SF3
Diffstat (limited to 'phinx-autoload.php')
-rw-r--r--phinx-autoload.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/phinx-autoload.php b/phinx-autoload.php
index b6d642e..7f20807 100644
--- a/phinx-autoload.php
+++ b/phinx-autoload.php
@@ -5,5 +5,16 @@ require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
\Fedora\Autoloader\Autoload::addPsr4('Phinx\\', __DIR__);
\Fedora\Autoloader\Dependencies::required(array(
- '/usr/share/php/Symfony/Component/autoload.php',
+ [
+ '/usr/share/php/Symfony3/Component/Console/autoload.php',
+ '/usr/share/php/Symfony/Component/Console/autoload.php',
+ ],
+ [
+ '/usr/share/php/Symfony3/Component/Config/autoload.php',
+ '/usr/share/php/Symfony/Component/Config/autoload.php',
+ ],
+ [
+ '/usr/share/php/Symfony3/Component/Yaml/autoload.php',
+ '/usr/share/php/Symfony/Component/Yaml/autoload.php',
+ ],
));