raindrop / import-bundle
Symfony Raindrop ImportBundle
Installs: 96
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- doctrine/orm: >=2.2.3,<2.4-dev
- symfony/console: 2.1.*@dev
- symfony/finder: 2.1.*@dev
- symfony/framework-bundle: >=2.1.0,<2.3
- symfony/monolog-bundle: >=2.1,<3
- symfony/yaml: 2.1.*@dev
Requires (Dev)
- symfony/class-loader: 2.1.x@dev
- symfony/validator: 2.1.x@dev
This package is not auto-updated.
Last update: 2024-11-04 12:03:12 UTC
README
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.