├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── config └── lang-installer.php ├── phpunit.xml └── src ├── Console └── Commands │ └── LanguageInstaller.php ├── LanguageInstallerServiceProvider.php └── Services ├── GithubResourcesRepository.php └── ResourcesRepository.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/composer.json -------------------------------------------------------------------------------- /config/lang-installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/config/lang-installer.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Console/Commands/LanguageInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/src/Console/Commands/LanguageInstaller.php -------------------------------------------------------------------------------- /src/LanguageInstallerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/src/LanguageInstallerServiceProvider.php -------------------------------------------------------------------------------- /src/Services/GithubResourcesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/src/Services/GithubResourcesRepository.php -------------------------------------------------------------------------------- /src/Services/ResourcesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ablunier/laravel-lang-installer/HEAD/src/Services/ResourcesRepository.php --------------------------------------------------------------------------------