├── .gitignore ├── .phpunit.xml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── src └── CsvCollection.php └── tests ├── CollectionTest.php └── resources ├── with-header.csv └── without-header.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/.phpunit.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/composer.json -------------------------------------------------------------------------------- /src/CsvCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/src/CsvCollection.php -------------------------------------------------------------------------------- /tests/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/tests/CollectionTest.php -------------------------------------------------------------------------------- /tests/resources/with-header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/tests/resources/with-header.csv -------------------------------------------------------------------------------- /tests/resources/without-header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DutchCodingCompany/csv-collection/HEAD/tests/resources/without-header.csv --------------------------------------------------------------------------------