Skip to content

Commit

Permalink
Update to PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed Jun 12, 2023
1 parent 432f1c8 commit d3a55d6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}
],
"require": {
"php": ">=8.1",
"php": ">=8.2",
"jenssegers/agent": "^2.6",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
Expand Down
8 changes: 8 additions & 0 deletions rector.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->sets([LevelSetList::UP_TO_PHP_82])

$rectorConfig->paths([__DIR__ . '/src']);
};

0 comments on commit d3a55d6

Please sign in to comment.