gitextract_gcilwl22/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── SECURITY.md │ └── workflows/ │ └── run-tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src/ │ ├── UniqueTranslationRule.php │ ├── UniqueTranslationServiceProvider.php │ └── UniqueTranslationValidator.php └── tests/ ├── Stubs/ │ └── Model.php ├── TestCase.php ├── UniqueTranslationTest.php ├── ValidationMessageTest.php └── WhereClauseTest.php