diff --git a/composer.json b/composer.json index e14ff97..f71fd96 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "doctrine/dbal": "^3.1 || ^4.0", "phpunit/phpunit": "^12.0", "vimeo/psalm": "^6.13", - "symfony/cache": "^5.3||^6.2", + "symfony/cache": "^5.3||^6.2||^7.0", "php-parallel-lint/php-parallel-lint": "^1.3.2", "phpstan/phpstan": "^1.12 || ^2.0" }, diff --git a/test/Feature/Type/JsonTest.php b/test/Feature/Type/JsonTest.php index 8e704ab..6f0f79d 100644 --- a/test/Feature/Type/JsonTest.php +++ b/test/Feature/Type/JsonTest.php @@ -60,7 +60,7 @@ public function testSerializeFails(): void $this->expectException(Error::class); $jsonType = new Json(); - $jsonType->serialize(["name" => "\xB1\x31"]); + $jsonType->serialize(['name' => "\xB1\x31"]); } public function testContains(): void