solventt / pluralizer
Converts a noun from singular to plural
dev-master
2024-01-16 15:47 UTC
Requires
- php: ^7.4 || ^8.0
Requires (Dev)
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^5.7
This package is auto-updated.
Last update: 2024-10-14 14:27:36 UTC
README
This package converts a noun from singular to plural. Also supports:
- 286 uncountable nouns which have the same singular and plural form
- exceptions like "man - men", "tooth - teeth", etc.
- identical noun forms (sheep, swine, deer, etc.)
DOESN'T support compound nouns (e.g. head banger, son-in-law, etc.)
One of the grammar rules sources - https://en.wikipedia.org/wiki/English_plurals
If someone doubts about nouns ending in -o, there are links to wiktionary.org on https://www.wordexample.com/list/nouns-ending-o
Installing
composer require solventt/pluralizer
Usage
$plural = Pluralizer::convert('singular');