https://github.com/michabbb/normalizer
https://github.com/michabbb/normalizer
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/michabbb/normalizer
- Owner: michabbb
- Created: 2016-11-08T11:02:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-23T20:07:16.000Z (over 4 years ago)
- Last Synced: 2023-12-14T23:16:20.974Z (about 2 years ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# This a copy of a deleted project of https://github.com/Ejz
# Normalizer
String normalization library for PHP.
### Quick start
```bash
$ mkdir myproject && cd myproject
$ curl -sS 'https://getcomposer.org/installer' | php
$ nano -w composer.json
```
Insert following code:
```javascript
{
"require": {
"ejz/normalizer": "~1.0"
}
}
```
Now install dependencies:
```bash
$ php composer.phar install
```
If everything is OK, let's go with testing:
```php
'{$_str}'", chr(10);
```
```php
' Hello, world! ' --> 'hello world'
```