Skip to content

Commit 5554477

Browse files
committed
2.3.0
1 parent 87c1a47 commit 5554477

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 2.3.0 (2015-03-19)
2+
3+
* Add Persian characters in Stringy::charsArray()
4+
* Use symfony/polyfill-mbstring to avoid dependency on ext-mbstring
5+
16
### 2.2.0 (2015-12-20)
27

38
* isJSON now returns false for empty strings

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
154154
use 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

Comments
 (0)