├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── src ├── EnglishInflector.php ├── Inflection.php ├── Inflector.php └── RussianInflector.php └── tests ├── Component.php ├── EnglishInflectorTest.php ├── RussianInflectorTest.php └── Yii.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/composer.json -------------------------------------------------------------------------------- /src/EnglishInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/src/EnglishInflector.php -------------------------------------------------------------------------------- /src/Inflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/src/Inflection.php -------------------------------------------------------------------------------- /src/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/src/Inflector.php -------------------------------------------------------------------------------- /src/RussianInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/src/RussianInflector.php -------------------------------------------------------------------------------- /tests/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/tests/Component.php -------------------------------------------------------------------------------- /tests/EnglishInflectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/tests/EnglishInflectorTest.php -------------------------------------------------------------------------------- /tests/RussianInflectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/tests/RussianInflectorTest.php -------------------------------------------------------------------------------- /tests/Yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapmorgan/yii2-inflection/HEAD/tests/Yii.php --------------------------------------------------------------------------------