├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Controller │ └── Component │ │ ├── CsvExportComponent.php │ │ └── FixedLengthExportComponent.php ├── Form │ ├── CsvImportForm.php │ └── FixedLengthImportForm.php └── LargeExport │ └── LargeCsvExport.php └── tests ├── TestCase ├── Controller │ └── Component │ │ ├── CsvExportComponentTest.php │ │ └── FixedLengthComponentTest.php └── Form │ ├── CsvImportFormTest.php │ └── FixedLengthImportFormTest.php ├── bootstrap.php └── test_app ├── test1.csv └── test1.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Controller/Component/CsvExportComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/src/Controller/Component/CsvExportComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/FixedLengthExportComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/src/Controller/Component/FixedLengthExportComponent.php -------------------------------------------------------------------------------- /src/Form/CsvImportForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/src/Form/CsvImportForm.php -------------------------------------------------------------------------------- /src/Form/FixedLengthImportForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/src/Form/FixedLengthImportForm.php -------------------------------------------------------------------------------- /src/LargeExport/LargeCsvExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/src/LargeExport/LargeCsvExport.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/CsvExportComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/TestCase/Controller/Component/CsvExportComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/FixedLengthComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/TestCase/Controller/Component/FixedLengthComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Form/CsvImportFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/TestCase/Form/CsvImportFormTest.php -------------------------------------------------------------------------------- /tests/TestCase/Form/FixedLengthImportFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/TestCase/Form/FixedLengthImportFormTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test_app/test1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/test_app/test1.csv -------------------------------------------------------------------------------- /tests/test_app/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satthi/csv-combine-plugin-for-CakePHP/HEAD/tests/test_app/test1.txt --------------------------------------------------------------------------------