├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── AssocDecoder.php ├── Decoder.php └── Encoder.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/composer.json -------------------------------------------------------------------------------- /src/AssocDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/src/AssocDecoder.php -------------------------------------------------------------------------------- /src/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/src/Decoder.php -------------------------------------------------------------------------------- /src/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-csv/HEAD/src/Encoder.php --------------------------------------------------------------------------------