summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 99de362..d4f809c 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ This package is compliant with [PSR-1], [PSR-2], and [PSR-4].
System Requirements
-------
-You need **PHP >= 5.4.0** and the `mbstring` extension to use `Bakame\Csv` but the latest stable version of PHP is recommended.
+You need **PHP >= 5.4.0** and the `mbstring` extension to use `League\Csv` but the latest stable version of PHP is recommended.
Install
-------
@@ -54,8 +54,8 @@ Usage
* If you have your LC_CTYPE set to a locale that's using UTF-8 and you try to parse a file that's not in UTF-8, PHP will cut your fields the moment it encounters a byte it can't understand (i.e. any outside of ASCII that doesn't happen to be part of a UTF-8 character which it likely isn't). [This gist will show you a possible solution](https://gist.github.com/pilif/9137146) to this problem by using [PHP stream filter](http://www.php.net/manual/en/stream.filters.php). This tip is from [Philip Hofstetter](https://github.com/pilif)
* When merging multiples CSV documents don't forget to set the main CSV object
- as a `Bakame\Csv\Writer` object with the `$open_mode = 'a+'` to preserve its content.
- This setting is of course not required when your main `Bakame\Csv\Writer` object is
+ as a `League\Csv\Writer` object with the `$open_mode = 'a+'` to preserve its content.
+ This setting is of course not required when your main `League\Csv\Writer` object is
created from String
* **If you are on a Mac OS X Server**, add the following lines before using the library to help [PHP detect line ending in Mac OS X](http://php.net/manual/en/function.fgetcsv.php#refsect1-function.fgetcsv-returnvalues).
@@ -69,7 +69,7 @@ if (! ini_get("auto_detect_line_endings")) {
Documentation
-------------
-Fractal has [full documentation](http://csv.thephpleague.com), powered by [Sculpin](https://sculpin.io).
+Csv has [full documentation](http://csv.thephpleague.com), powered by [Sculpin](https://sculpin.io).
Contribute to this documentation in the [sculpin branch](https://github.com/thephpleague/csv/tree/sculpin/source).