Skip to content

Commit d96f5cc

Browse files
Try to fix with Laravel 12 compatibility
1 parent e62fc92 commit d96f5cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"doctrine/dbal": "^3.0 || ^4.0",
5050
"mockery/mockery": "^1.0",
5151
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
52-
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0"
52+
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0"
5353
},
5454
"suggest": {
5555
"doctrine/dbal": "[For Laravel 8-10] Required to rename columns and drop SQLite columns (^3.5.1)."

tests/Concerns/Seeders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function fillUlidTable(string $table): void
4040
$ulids[$i] = (string) Str::ulid();
4141

4242
if (Str::startsWith(Application::VERSION, '12.')) {
43-
usleep(500);
43+
usleep(1100);
4444
}
4545
}
4646

0 commit comments

Comments
 (0)