├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Exceptions │ └── TranslationErrorException.php ├── Translation.php ├── Translug.php ├── TranslugFacade.php ├── TranslugServiceProvider.php └── helpers │ └── functions.php └── tests └── TranslugTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/TranslationErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/Exceptions/TranslationErrorException.php -------------------------------------------------------------------------------- /src/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/Translation.php -------------------------------------------------------------------------------- /src/Translug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/Translug.php -------------------------------------------------------------------------------- /src/TranslugFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/TranslugFacade.php -------------------------------------------------------------------------------- /src/TranslugServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/TranslugServiceProvider.php -------------------------------------------------------------------------------- /src/helpers/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/src/helpers/functions.php -------------------------------------------------------------------------------- /tests/TranslugTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JellyBool/translug/HEAD/tests/TranslugTest.php --------------------------------------------------------------------------------