1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-04 04:17:35 +02:00
This commit is contained in:
Daniel St. Jules
2017-06-11 21:10:27 -04:00
parent f9c2e0ae36
commit df24ab62d2
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
### 3.1.0 (2017-06-11)
* Add $language support to slugify
* Add bg specific transliteration
* ЬЪ/ьъ handling is now language-specific
### 3.0.1 (2017-04-12)
* Don't replace @ in toAscii
* Use normal replacement for @ in slugify, e.g. user@home => user-home

View File

@@ -1,7 +1,7 @@
![Stringy](http://danielstjules.com/github/stringy-logo.png)
A PHP string manipulation library with multibyte support. Compatible with PHP
5.4+, PHP 7, and HHVM.
5.4+, PHP 7+, and HHVM.
``` php
s('string')->toTitleCase()->ensureRight('y') == 'Stringy'
@@ -180,7 +180,7 @@ in your composer.json file:
```json
"require": {
"danielstjules/stringy": "~3.0.1"
"danielstjules/stringy": "~3.1.0"
}
```