diff --git a/composer.json b/composer.json index 9f8dc09..8e927e2 100644 --- a/composer.json +++ b/composer.json @@ -17,12 +17,12 @@ ], "require": { "php": "^8.1", - "chiiya/code-style-php": "^2.13", + "chiiya/code-style-php": "^2.18.0", "illuminate/contracts": "^9.0|^10.0", - "larastan/larastan": "^2.8", - "phpro/grumphp": "^2.0", - "spatie/laravel-package-tools": "^1.14", - "tightenco/tlint": "^8.0" + "larastan/larastan": "^2.9", + "phpro/grumphp": "^2.5", + "spatie/laravel-package-tools": "^1.16", + "tightenco/tlint": "^9.2" }, "require-dev": { "nunomaduro/collision": "^6.0|^7.0", diff --git a/src/TLintPreset.php b/src/TLintPreset.php index 2ea62fa..61c861a 100644 --- a/src/TLintPreset.php +++ b/src/TLintPreset.php @@ -16,7 +16,6 @@ use Tighten\TLint\Linters\RequestValidation; use Tighten\TLint\Linters\SpaceAfterBladeDirectives; use Tighten\TLint\Linters\SpacesAroundBladeRenderContent; -use Tighten\TLint\Linters\UseAuthHelperOverFacade; use Tighten\TLint\Presets\PresetInterface; class TLintPreset implements PresetInterface @@ -36,7 +35,6 @@ public function getLinters(): array RequestValidation::class, SpaceAfterBladeDirectives::class, SpacesAroundBladeRenderContent::class, - UseAuthHelperOverFacade::class, NoJsonDirective::class, ]; }