@@ -131,7 +131,7 @@ in your composer.json file:
131131
132132``` json
133133"require" : {
134- "danielstjules/stringy" : " ~2.2 "
134+ "danielstjules/stringy" : " ~2.3 "
135135}
136136```
137137
@@ -154,11 +154,13 @@ And in either case, I'd suggest using an alias.
154154use Stringy\Stringy as S;
155155```
156156
157- Please note that Stringy relies on the ` mbstring ` PHP module for its underlying
158- multibyte support. This is a non-default, but very common module. For example,
159- with debian and ubuntu, it's included in libapache2-mod-php5, php5-cli, and
160- php5-fpm. For OSX users, it's a default for any version of PHP installed with
161- homebrew. If compiling PHP from scratch, it can be included with the
157+ Please note that Stringy relies on the ` mbstring ` module for its underlying
158+ multibyte support. If the module is not found, Stringy will use
159+ [ symfony/polyfill-mbstring] ( https://github.com/symfony/polyfill-mbstring ) .
160+ ex-mbstring is a non-default, but very common module. For example, with debian
161+ and ubuntu, it's included in libapache2-mod-php5, php5-cli, and php5-fpm. For
162+ OSX users, it's a default for any version of PHP installed with homebrew.
163+ If compiling PHP from scratch, it can be included with the
162164` --enable-mbstring ` flag.
163165
164166## OO and Chaining
0 commit comments