From bb919f61374a76f63c4ef5f6bd1721f98c761b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B9=20=D0=A8=D0=B0?= =?UTF-8?q?=D0=BD=D0=B3=D0=B8=D0=BD?= Date: Fri, 23 Dec 2022 17:30:14 +0800 Subject: [PATCH] Allow "symfony/yaml" v6 for latest Laravel Hey guys! Great module! We are planing to use it in our Laravel project. The only problem is we also using `Larastan` PHPStan extension (v2.2.9), which uses `orchestra/testbench` (v7.15.0), and all other packages allow v5 and v6 of `symfony/yaml`, but `testbench` is locked to "^6.0.9". I have tested you package with yaml v6, and it works. We of course just made a fork of it for or usage, but it would be great if you allow for yaml v6 also. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e90abe6..479c4a6 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "require": { "php": "^7.4 || ^8.0", "phpstan/phpstan": "^1.8", - "symfony/yaml": "^5.4", + "symfony/yaml": "^5.4 || ^6.0", "symfony/polyfill-php80": "^v1.27.0" }, "require-dev": {