- eZ Platform
2.0+ - Kaliop/eZMigrationBundle
5.0+
This bundle is available through Packagist. Run the following from your prefered command line tool starting into your website root folder:
$ composer require flutchman/ez-migration-ui-bundle
Activate the bundle in app/AppKernel.php file by adding it to the $bundles array in registerBundles method, together with other required bundles:
public function registerBundles()
{
...
new Kaliop\eZMigrationBundle\EzMigrationBundle(),
new Flutchman\EzMigrationUiBundle\FlutchmanEzMigrationUiBundle()
...
return $bundles;
}Put the following in your app/config/routing.yml file to be able to display view page:
flutchman_ez_migration_ui:
resource: "@FlutchmanEzMigrationUiBundle/Resources/config/routing.yml"Clear the eZ Platform caches with the following command:
$ php bin/console cache:clear