├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml └── src ├── Commands └── Translate.php ├── LangFilesTranslatorServiceProvider.php └── Services └── TranslateService.php /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Commands/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/src/Commands/Translate.php -------------------------------------------------------------------------------- /src/LangFilesTranslatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/src/LangFilesTranslatorServiceProvider.php -------------------------------------------------------------------------------- /src/Services/TranslateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisalehi1380/laravel-lang-files-translator/HEAD/src/Services/TranslateService.php --------------------------------------------------------------------------------