2017 © Pedro Peláez
 

symfony-bundle import-bundle

Symfony Raindrop ImportBundle

image

raindrop/import-bundle

Symfony Raindrop ImportBundle

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Raindrop Import Bundle

Build Status, (*1)

This bundle adds support for import data from different sources (csv, yml, xml ...) and map them to database entities., (*2)

INSTALLATION:

First add the dependency to your composer.json` file:, (*3)

"require": {
    ...
    "raindrop/import-bundle": "dev-master"
},

Then install the bundle with the command:, (*4)

php composer.phar update

Enable the bundle in your application kernel:, (*5)

``` php <?php // app/AppKernel.php, (*6)

public function registerBundles() { $bundles = array( // ... new Raindrop\ImportBundle\RaindropImportBundle(), ); } ```, (*7)

Now the bundle is enabled., (*8)

The Versions