-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: laravel 11 support #200
Conversation
@@ -568,7 +568,7 @@ public function testInsertDatetime(): void | |||
$qb = $conn->table($tableName); | |||
|
|||
$row = $this->generateTestRow(); | |||
$carbonMax = Carbon::maxValue(); | |||
$carbonMax = Carbon::create(9999, 12, 31, 23, 59, 59, 'UTC'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
memo: The maxValue and minValue functions were removed when Carbon v3 was introduced.
briannesbitt/Carbon@a4726ae
Laravel 11 now allows v3 series.
https://github.com/laravel/framework/blob/11.x/composer.json#L39
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM again
Closes #199