Skip to content

Commit

Permalink
Updated deps for laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin.schmick committed Jun 30, 2022
1 parent f05ea57 commit 5852d4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
}
],
"require": {
"php": "^8.0|^8.1",
"always-open/laravel-request-logger": "^0.1.0",
"php": "^8.0.0|^8.1.0",
"always-open/laravel-request-logger": "^2.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/contracts": "^8.73",
"illuminate/support": "^8.77",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0",
"spatie/data-transfer-object": "^3.7",
"spatie/laravel-package-tools": "^1.9.2",
"symfony/property-access": "^6.0",
"symfony/serializer": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/Util/ShipEngineLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class ShipEngineLogger implements LoggerInterface
{
use LoggerTrait;

public function log($level, $message, array $context = [])
public function log(mixed $level, string|\Stringable $message, array $context = []): void
{
$message = (string)$message;

Expand Down

0 comments on commit 5852d4b

Please sign in to comment.