Created
May 31, 2017 17:55
-
-
Save TuningYourCode/82b2186b1971e1e1b5e74edc55452b3b to your computer and use it in GitHub Desktop.
Standalone Doctrine Migrations autoload own abstract migration classes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$classLoader = require 'phar://doctrine-migrations.phar/vendor/autoload.php'; | |
$classLoader->addPsr4('DoctrineMigrations\\AbstractMigration\\', __DIR__.'/migrations/src/DoctrineMigrations/AbstractMigration'); | |
return new \Symfony\Component\Console\Helper\HelperSet(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment