Skip to content

Releases: franiglesias/csv

First Usable Version

10 Jan 17:59
Compare
Choose a tag to compare
v1.0.2

Added phpstan local and github analysis. Some fixes applied

The big refactor

24 Jun 17:04
Compare
Choose a tag to compare
The big refactor Pre-release
Pre-release

Internal changes in order to improve code quality and to ease future development.

Basic documentation

24 Jun 12:15
Compare
Choose a tag to compare
Basic documentation Pre-release
Pre-release

Basic documentation added in the readme

First version

24 Jun 11:31
Compare
Choose a tag to compare
First version Pre-release
Pre-release

In this first release we introduce the Reader and Writer classes.

Writer allows to write rows arrays, associative arrays and Dto. Dto should have public properties to be written. Both array keys and Dto field name will be used as headers. Delimiter and enclosure chars are configurable.

Reader allows to read rows as arrays and associative arrays (if the file has headers) by default. Rows can be mapped to Dto with the provided DtoMapper. Also, Mappers can be created implementing an RowMapperInterface.