├── Changelog.md ├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon └── src ├── Command ├── CompareCommand.php └── FindMissingCommand.php ├── DependencyInjection ├── Compiler │ ├── ConfigureTranslatorPass.php │ └── ExtractorPass.php ├── Configuration.php └── IncenteevTranslationCheckerExtension.php ├── IncenteevTranslationCheckerBundle.php ├── Resources └── config │ └── services.xml └── Translator └── Extractor ├── ChainExtractor.php ├── ExtractorInterface.php ├── JsExtractor.php └── SymfonyExtractor.php /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Command/CompareCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Command/CompareCommand.php -------------------------------------------------------------------------------- /src/Command/FindMissingCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Command/FindMissingCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ConfigureTranslatorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/DependencyInjection/Compiler/ConfigureTranslatorPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ExtractorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/DependencyInjection/Compiler/ExtractorPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/IncenteevTranslationCheckerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/DependencyInjection/IncenteevTranslationCheckerExtension.php -------------------------------------------------------------------------------- /src/IncenteevTranslationCheckerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/IncenteevTranslationCheckerBundle.php -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Translator/Extractor/ChainExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Translator/Extractor/ChainExtractor.php -------------------------------------------------------------------------------- /src/Translator/Extractor/ExtractorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Translator/Extractor/ExtractorInterface.php -------------------------------------------------------------------------------- /src/Translator/Extractor/JsExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Translator/Extractor/JsExtractor.php -------------------------------------------------------------------------------- /src/Translator/Extractor/SymfonyExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Incenteev/translation-checker-bundle/HEAD/src/Translator/Extractor/SymfonyExtractor.php --------------------------------------------------------------------------------