├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yaml ├── lib ├── Inflections.php ├── Inflections │ ├── en.php │ ├── es.php │ ├── fr.php │ ├── nb.php │ ├── pt.php │ └── tr.php ├── InflectionsConfigurator.php ├── InflectionsNotFound.php ├── Inflector.php ├── StaticInflector.php └── helpers.php ├── phpcs.xml ├── phpunit07-helpers.xml ├── phpunit07.xml └── phpunit11.xml /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /lib/Inflections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections.php -------------------------------------------------------------------------------- /lib/Inflections/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/en.php -------------------------------------------------------------------------------- /lib/Inflections/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/es.php -------------------------------------------------------------------------------- /lib/Inflections/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/fr.php -------------------------------------------------------------------------------- /lib/Inflections/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/nb.php -------------------------------------------------------------------------------- /lib/Inflections/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/pt.php -------------------------------------------------------------------------------- /lib/Inflections/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflections/tr.php -------------------------------------------------------------------------------- /lib/InflectionsConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/InflectionsConfigurator.php -------------------------------------------------------------------------------- /lib/InflectionsNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/InflectionsNotFound.php -------------------------------------------------------------------------------- /lib/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/Inflector.php -------------------------------------------------------------------------------- /lib/StaticInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/StaticInflector.php -------------------------------------------------------------------------------- /lib/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/lib/helpers.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit07-helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/phpunit07-helpers.xml -------------------------------------------------------------------------------- /phpunit07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/phpunit07.xml -------------------------------------------------------------------------------- /phpunit11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICanBoogie/Inflector/HEAD/phpunit11.xml --------------------------------------------------------------------------------