├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── translations-checker.php ├── docs └── index.html ├── phpunit.xml ├── phpunit.xml.bak ├── src ├── Console │ └── Commands │ │ └── CheckIfTranslationsAreAllThereCommand.php ├── LaravelTranslationsChecker.php ├── LaravelTranslationsCheckerFacade.php └── LaravelTranslationsCheckerServiceProvider.php └── tests ├── Tests ├── TestCase.php └── Unit │ ├── Console │ └── Commands │ │ ├── CheckExcludeExtensionsTest.php │ │ ├── CheckExcludeMacFilesTest.php │ │ ├── CheckExcludedLanguagesTest.php │ │ ├── CheckIfExcludedDirectoriesConfigurationOptionWorksTest.php │ │ ├── CheckIfTranslationsAreAllThereCommandTest.php │ │ └── CommandCanHandleErrorsTest.php │ └── ExampleTest.php └── resources ├── UnsedResources └── laravel_project │ ├── .env │ └── bootstrap │ └── cache │ ├── packages.php │ └── services.php └── lang ├── basic ├── one_missing_file │ ├── en │ │ └── test.php │ └── nl │ │ └── not_relevant_file_but_nl_dir_needs_to_be_there_for_git.txt ├── one_missing_key │ ├── en │ │ └── test.php │ └── nl │ │ └── test.php ├── one_missing_value │ ├── en │ │ └── test.php │ └── nl │ │ └── test.php ├── two_missing_keys │ ├── en │ │ └── test.php │ └── nl │ │ └── test.php └── zero_missing_keys │ ├── en │ └── test.php │ └── nl │ └── test.php ├── exclude_langs ├── en │ └── test.php ├── fr │ └── test.php └── ga │ └── test.php ├── exclude_mac_files └── ds-store │ ├── .DS_Store │ └── en │ └── test.php ├── excluded_directories ├── excluded │ ├── de │ │ └── test.php │ └── en │ │ └── test.php └── included │ ├── de │ └── test.php │ └── en │ └── test.php ├── json ├── one_missing_file │ ├── en │ │ └── test.json │ └── nl │ │ └── not_relevant_file_but_nl_dir_needs_to_be_there_for_git.txt ├── one_missing_key │ ├── en │ │ └── test.json │ └── nl │ │ └── test.json ├── one_missing_value │ ├── en │ │ └── test.json │ └── nl │ │ └── test.json ├── toplevel_json_files │ ├── missing_key_in_one_lang │ │ ├── en.json │ │ └── nl.json │ ├── one │ │ └── en.json │ ├── slashes_in_title │ │ ├── en.json │ │ └── nl.json │ └── two │ │ ├── en.json │ │ └── nl.json ├── two_missing_keys │ ├── en │ │ └── test.json │ └── nl │ │ └── test.json └── zero_missing_keys │ ├── en │ └── test.json │ └── nl │ └── test.json └── multi_langs ├── one_language └── en │ └── test.php ├── ten_languages ├── en │ └── test.php ├── fr │ └── test.php ├── ga │ └── test.php ├── hi │ └── test.php ├── hr │ └── test.php ├── hu │ └── test.php ├── hy │ └── test.php ├── ja │ └── test.php ├── nl │ └── test.php └── no │ └── test.php └── two_languages ├── en └── test.php └── nl └── test.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/composer.lock -------------------------------------------------------------------------------- /config/translations-checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/config/translations-checker.php -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | Package pages 2 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /src/Console/Commands/CheckIfTranslationsAreAllThereCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/src/Console/Commands/CheckIfTranslationsAreAllThereCommand.php -------------------------------------------------------------------------------- /src/LaravelTranslationsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/src/LaravelTranslationsChecker.php -------------------------------------------------------------------------------- /src/LaravelTranslationsCheckerFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/src/LaravelTranslationsCheckerFacade.php -------------------------------------------------------------------------------- /src/LaravelTranslationsCheckerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/src/LaravelTranslationsCheckerServiceProvider.php -------------------------------------------------------------------------------- /tests/Tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/TestCase.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CheckExcludeExtensionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CheckExcludeExtensionsTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CheckExcludeMacFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CheckExcludeMacFilesTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CheckExcludedLanguagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CheckExcludedLanguagesTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CheckIfExcludedDirectoriesConfigurationOptionWorksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CheckIfExcludedDirectoriesConfigurationOptionWorksTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CheckIfTranslationsAreAllThereCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CheckIfTranslationsAreAllThereCommandTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/Console/Commands/CommandCanHandleErrorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/Console/Commands/CommandCanHandleErrorsTest.php -------------------------------------------------------------------------------- /tests/Tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/Tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/resources/UnsedResources/laravel_project/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/UnsedResources/laravel_project/.env -------------------------------------------------------------------------------- /tests/resources/UnsedResources/laravel_project/bootstrap/cache/packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/UnsedResources/laravel_project/bootstrap/cache/packages.php -------------------------------------------------------------------------------- /tests/resources/UnsedResources/laravel_project/bootstrap/cache/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/UnsedResources/laravel_project/bootstrap/cache/services.php -------------------------------------------------------------------------------- /tests/resources/lang/basic/one_missing_file/en/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/lang/basic/one_missing_file/en/test.php -------------------------------------------------------------------------------- /tests/resources/lang/basic/one_missing_file/nl/not_relevant_file_but_nl_dir_needs_to_be_there_for_git.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/lang/basic/one_missing_key/en/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/lang/basic/one_missing_key/en/test.php -------------------------------------------------------------------------------- /tests/resources/lang/basic/one_missing_key/nl/test.php: -------------------------------------------------------------------------------- 1 | '', 5 | ]; 6 | -------------------------------------------------------------------------------- /tests/resources/lang/basic/two_missing_keys/en/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarsWiegers/laravel-translations-checker/HEAD/tests/resources/lang/basic/two_missing_keys/en/test.php -------------------------------------------------------------------------------- /tests/resources/lang/basic/two_missing_keys/nl/test.php: -------------------------------------------------------------------------------- 1 |