$container = new \Pimple\Container();
$container['console'] = function () use ($container) {
$console = new \Symfony\Component\Console\Application();
// Register some other console commands here
// Register the services provided by this service provider
$container->register(new \Devture\PimpleProvider\PhinxMigrations\ServiceProvider($dbMigrationsConfig));
// Attach the console commands provided by this service provider with this console instance
$container['devture_phinx_migrations.attach_commands_to_console']($console);
return $console;
};
$container['console']->run();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.