Releases: franiglesias/csv
Releases · franiglesias/csv
First Usable Version
v1.0.2 Added phpstan local and github analysis. Some fixes applied
The big refactor
Internal changes in order to improve code quality and to ease future development.
Basic documentation
Basic documentation added in the readme
First version
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.