├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.md ├── autoload.php.dist ├── composer.json ├── phpunit.xml-dist ├── src └── Inflect │ └── Inflect.php └── tests └── InflectTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/autoload.php.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/phpunit.xml-dist -------------------------------------------------------------------------------- /src/Inflect/Inflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/src/Inflect/Inflect.php -------------------------------------------------------------------------------- /tests/InflectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmucklo/inflect/HEAD/tests/InflectTest.php --------------------------------------------------------------------------------