Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ddeboer/ddeboerdataimportbundle
A Symfony2 bundle that offers a way to import data from and store data to a range of formats and media
https://github.com/ddeboer/ddeboerdataimportbundle
Last synced: 3 days ago
JSON representation
A Symfony2 bundle that offers a way to import data from and store data to a range of formats and media
- Host: GitHub
- URL: https://github.com/ddeboer/ddeboerdataimportbundle
- Owner: ddeboer
- Created: 2011-09-29T16:06:24.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-03-09T22:13:17.000Z (almost 9 years ago)
- Last Synced: 2025-01-10T11:17:49.305Z (10 days ago)
- Language: PHP
- Homepage:
- Size: 220 KB
- Stars: 69
- Watchers: 7
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Ddeboer Data Import Bundle
==========================Introduction
------------
This is a Symfony2 bundle for the [ddeboer/data-import library](https://github.com/ddeboer/data-import).Installation
------------This library is available on [Packagist](http://packagist.org/packages/ddeboer/data-import-bundle):
To install it, run:
$ composer require ddeboer/data-import-bundle:~0.1
If you’re on Symfony 2.1, use the appropriate branch instead:
$ composer require ddeboer/data-import-bundle:symfony-2.1
Then add the bundle to `app/AppKernel.php`:
```
public function registerBundles()
{
return array(
...
new Ddeboer\DataImportBundle\DdeboerDataImportBundle(),
...
);
}
```