@@ -20,7 +20,7 @@ rows efficiently without having to load the whole file into memory at once.
20
20
and does not get in your way.
21
21
Builds on top of well-tested components and well-established concepts instead of reinventing the wheel.
22
22
* ** Good test coverage** -
23
- Comes with an [ automated tests suite] ( #tests ) and is regularly tested in the * real world*
23
+ Comes with an [ automated tests suite] ( #tests ) and is regularly tested in the * real world* .
24
24
25
25
** Table of contents**
26
26
@@ -79,12 +79,12 @@ World!"
79
79
> Note that these more advanced parsing rules are often handled inconsistently
80
80
by other applications. Nowadays, these parsing rules are defined as part of
81
81
[ RFC 4180] ( https://tools.ietf.org/html/rfc4180 ) , however many applications
82
- starting using some CSV-variant long before this standard was defined.
82
+ started using some CSV-variant long before this standard was defined.
83
83
84
84
Some applications refer to CSV as Character-Separated Values, simply because
85
85
using another delimiter (such as semicolon or tab) is a rather common approach
86
86
to avoid the need to enclose common values in quotes. This is particularly
87
- common for European systems that use a comma as decimal separator.
87
+ common for systems in Europe (and elsewhere) that use a comma as decimal separator.
88
88
89
89
```
90
90
name;comment
@@ -349,12 +349,15 @@ For more details, see ReactPHP's
349
349
The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
350
350
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
351
351
352
+ This project follows [ SemVer] ( https://semver.org/ ) .
352
353
This will install the latest supported version:
353
354
354
355
``` bash
355
- $ composer require clue/reactphp-csv:dev-master
356
+ $ composer require clue/reactphp-csv:^1.0
356
357
```
357
358
359
+ See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
360
+
358
361
This project aims to run on any platform and thus does not require any PHP
359
362
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
360
363
HHVM.
0 commit comments