raindrop/import-bundle

Symfony Raindrop ImportBundle

Installs: 96

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/raindrop/import-bundle

dev-develop 2013-06-07 10:01 UTC

This package is not auto-updated.

Last update: 2025-10-06 16:19:09 UTC


README

Build Status

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

INSTALLATION:

First add the dependency to your composer.json` file:

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

Then install the bundle with the command:

php composer.phar update

Enable the bundle in your application kernel:

<?php
// app/AppKernel.php

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

Now the bundle is enabled.