ImportEngineBundle icon indicating copy to clipboard operation
ImportEngineBundle copied to clipboard

A generic import (and export) -engine that provides easy to use yet powerful features

Results 12 ImportEngineBundle issues
Sort by recently updated
recently updated
newest added

Hi, I have a csv with ',' separators instead of ';'. In my importer I thought I could use : ``` yaml preconditions: format: { type: csv, arguments: [','] }...

bug
enhancement

Hi Mathielen, In your controller example ``` public function importAction(\Symfony\Component\HttpFoundation\Request $request) { //create the request for the import-engine $importRequest = new \Mathielen\ImportEngine\ValueObject\ImportRequest($request->files->getIterator()->current()); /** @var \Mathielen\ImportEngine\Import\ImportBuilder $importBuilder */ $importBuilder = $this->container->get('mathielen_importengine.import.builder');...

Hi Markus, Is it possible to configure an importer to recognize space delimited files where the number of whitespace define the next field? This type of csv files are usually...

Hi Markus, Another question: As I understood the "target" is where the data is send to? So in your minimum example: ``` another_minimum_importer: target: type: file uri: "@='%kernel.root_dir%/../output_'~date('Y-m-d')~'.csv'" #this uses...

Hi Markus, Does the ImportEngine also support S3 storage as a storageProvider? Regards, Tim

Hi Markus, Another question, where I'm not sure how to handle an automated import process properly. Situation: - a process dumps import files in a directory - a cron job...

Hi Mathielen, Can you provide a bit more documentation - how the validation works? "Source" is clear but the "target: ~" is not clear. - how we can add other...

When trying the validation configuration ``` #validate imported data validation: source: #add constraints to source fields header1: email header2: notempty target: ~ #activate validation against generated object from object-factory (via...

enhancement

``` yaml validation: source: id: notempty ``` Catchable Fatal Error: Argument 1 passed to Mathielen\ImportEngine\Validation\ValidatorValidation::__construct() must be an instance of Symfony\Component\Validator\ValidatorInterface, instance of Symfony\Component\Validator\Validator\RecursiveValidator given, called