import-engine icon indicating copy to clipboard operation
import-engine copied to clipboard

Full-blown importer stack for importing almost any data into your application

Results 8 import-engine issues
Sort by recently updated
recently updated
newest added

Welcome to dependencies.io! This PR contains an initial `dependencies.yml` configuration to get you started. It is based off a few files that we detected in your repo and officially support....

fix StorageSelection must contain a callable or an extended callable (with arguments) as impl

Notice: Array to string conversion in 'name' => $this->callable.'', In fact the variable contains: $this->callable = ["object", "string"]; ```php Exception trace: () at /vendor/mathielen/import-engine/src/Mathielen/ImportEngine/Storage/ServiceStorage.php:78 Symfony\Component\Debug\ErrorHandler->handleError() at/vendor/mathielen/import-engine/src/Mathielen/ImportEngine/Storage/ServiceStorage.php:80 Mathielen\ImportEngine\Storage\ServiceStorage->info() at /vendor/mathielen/import-engine/src/Mathielen/ImportEngine/Import/ImportBuilder.php:120 Mathielen\ImportEngine\Import\ImportBuilder->build()...

/vendor/mathielen/import-engine/src/Mathielen/ImportEngine/Storage/Provider/ServiceStorageProvider.php:41 ` is_callable($callable) return false ` because: ` var_dump(array_keys($callable)); ` ` array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(2) } ` It is necessary ` unset($callable[2]); `

adds the ability to use space as a separator by removing the quoted words in the csv header (hence removing the non important spaces and all other special characters). But...

Hi, I'm trying to use the importer with a XML file, but I get the following error : ``` [Symfony\Component\Debug\Exception\ContextErrorException] Notice: Undefined index: @attributes Exception trace: () at [...]vendor/mathielen/import-engine/src/Mathielen/DataImport/Reader/XmlReader.php:36 ```...

E.g. in constructors comments, no expected var types, no IDE hints etc. at the moment.

For a lib with so many classes, docs are not self-explainatory. I don't know what is the reason and difference, for instance, between using DoctrineStorage and DoctrineQueryStorageProvider? Why should I...