reisraff/accentuation
This repository works making a parser in some string replacing the accented characters
Maintainers
2.0.2
2016-02-13 23:25 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phploc/phploc: 2.0.*
- phpmd/phpmd: 2.1.*
- phpunit/phpunit: 4.5.*
- sebastian/phpcpd: 2.0.*
- squizlabs/php_codesniffer: 2.0.*@dev
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT cb15244c431ce711ec7e5b77c18b801305d7cb16
- Rafael Reis <reisraff.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-28 07:31:49 UTC
README
π Latest Stable Version
π Total Downloads
π Latest Unstable Version
π License
π Build Status
This library works by replacing all accented characters to not accented characters.
To use
Add in your composer.json
"require" : { "reisraff/accentuation" : ">=2.0.2" }
Using in your code
<?php namespace MyNameSpace; use Accentuation\Accentuation; class MyClass { public function test() { return Accentuation::remove('This string will be returned without accentuation ÑéΓΓ³ΓΊ'); } }
Tests
To run the test suite, you need install the dependencies via composer, then run PHPUnit.
$ composer install
$ phpunit
You can also use the following command to run the most common QA checks, such as
php -l, phpcs, phpunit:
$ ant check
