nuxed / inflector
This package is abandoned and no longer maintained.
No replacement package was suggested.
Nuxed Inflector
v1.0.0
2019-11-20 03:37 UTC
Requires
- hhvm: ^4.25
- hhvm/hsl: ^4.25
Requires (Dev)
- facebook/fbexpect: ^2.7
- hhvm/hacktest: ^2.0
- hhvm/hhast: ^4.25
This package is auto-updated.
Last update: 2025-08-19 10:43:05 UTC
README
Nuxed Inflector
The Nuxed Inflector component converts words between their singular and plural forms (English only)
Installation
This package can be installed with Composer.
$ composer require nuxed/inflector
Example
use namespace Nuxed\Inflector; <<__EntryPoint>> async function main(): Awaitable<void> { $singular = Inflector\Inflector::singularize('children'); // > vec['child'] $plural = Inflector\Inflector::pluralize('bacterium'); // > vec['bacteria'] }
Security
For information on reporting security vulnerabilities in Nuxed, see SECURITY.md.
License
Nuxed is open-sourced software licensed under the MIT-licensed.