gitextract_gpyxuo6q/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── php-cs-fixer.yml │ ├── phpunit.yml │ └── update-changelog.yml ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── blade.xml │ ├── inspectionProfiles/ │ │ └── Project_Default.xml │ ├── laravel-idea.xml │ ├── linen.iml │ ├── modules.xml │ ├── php-test-framework.xml │ ├── php.xml │ └── vcs.xml ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config/ │ └── linen.php ├── ide.json ├── phpunit.xml.dist ├── src/ │ ├── CsvReader.php │ ├── CsvWriter.php │ ├── ExcelReader.php │ ├── ExcelWriter.php │ ├── Facades/ │ │ ├── .gitkeep │ │ └── Linen.php │ ├── Reader.php │ ├── Support/ │ │ ├── FileTypeHelper.php │ │ └── WriteIterator.php │ ├── Writer.php │ └── helpers.php └── tests/ ├── Feature/ │ ├── CsvReaderTest.php │ ├── CsvWriterTest.php │ ├── ExcelReaderTest.php │ ├── ExcelWriterTest.php │ └── FacadeTest.php ├── TestCase.php └── fixtures/ ├── basic.csv ├── basic.xlsx └── more-columns-than-headers.csv