Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 859 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 859 Bytes

VacuumBundle

The VacuumBundle offer an Implementation for the import of external data to populate a new or an existing Victoire Blog.

Installation

Install it with composer:

php composer.phar require victoire/vacuum-bundle

Then add it to your AppKernel:

class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles = array(
                ...
                new Victoire\DevTools\VacuumBundle\VictoireVacuumBundle(),
            );

            return $bundles;
        }
    }

Finally update your schema:

php bin/console doctrine:schema:update --force

Import available

Source Format
WordPress XML

Doc

  1. Basic usage
  2. How it Works