v2.6.0 — Framework keys in checks
Added
checkIncludeFrameworkKeysconfig option — whentrue, the keys shipped with Laravel's own bundled lang files (auth,pagination,passwords,validation) count as defined duringtranslation-handler:check/check-translations-tool, so references like__('auth.failed')are no longer reported as missing. Laravel's translator falls back to those bundled files even when a project never publishes them, so the references are valid at runtime — the check now reflects that. The keys are read straight fromvendor/laravel/framework/.../lang/en(the only locale the framework ships) and flattened to the configuredkeyDelimiter, independent offileNames— so framework groups the project does not publish (e.g.passwords,pagination) are covered too. When the vendor directory is absent the option is a silent no-op. Defaults tofalse(no behavior change on upgrade), and is read leniently (sometimes|boolean) so configs published before this release keep working. Removes the need for a customcheckerClasssubclass just to whitelist framework keys.
Full Changelog: v2.5.0...v2.6.0