├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Commands │ ├── BaseCommand.php │ ├── FindMissing.php │ └── FindSuperfluous.php ├── Exceptions │ └── MissingTranslationsException.php ├── LangCheckServiceProvider.php ├── TranslationLocator.php └── config.php └── tests ├── MissingTest.php ├── SuperfluousTest.php ├── TestCase.php └── TranslationLocatorTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Commands/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/Commands/BaseCommand.php -------------------------------------------------------------------------------- /src/Commands/FindMissing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/Commands/FindMissing.php -------------------------------------------------------------------------------- /src/Commands/FindSuperfluous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/Commands/FindSuperfluous.php -------------------------------------------------------------------------------- /src/Exceptions/MissingTranslationsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/Exceptions/MissingTranslationsException.php -------------------------------------------------------------------------------- /src/LangCheckServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/LangCheckServiceProvider.php -------------------------------------------------------------------------------- /src/TranslationLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/src/TranslationLocator.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- 1 | null, 4 | ]; -------------------------------------------------------------------------------- /tests/MissingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/tests/MissingTest.php -------------------------------------------------------------------------------- /tests/SuperfluousTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/tests/SuperfluousTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TranslationLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinnbeck/laravel-langcheck/HEAD/tests/TranslationLocatorTest.php --------------------------------------------------------------------------------