├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── src ├── QueryGenerator.php └── QueryObject.php └── tests └── QueryGeneratorTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | .php_cs.cache 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/composer.lock -------------------------------------------------------------------------------- /src/QueryGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/src/QueryGenerator.php -------------------------------------------------------------------------------- /src/QueryObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/src/QueryObject.php -------------------------------------------------------------------------------- /tests/QueryGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirba/import-query-generator/HEAD/tests/QueryGeneratorTest.php --------------------------------------------------------------------------------