From 0fb45e3dbc94a8bbcbcaa5926adb763b9d73cb14 Mon Sep 17 00:00:00 2001 From: Vladyslav Lyshenko Date: Wed, 28 Sep 2022 13:24:42 +0300 Subject: [PATCH] PHP 8 --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d9f9fdd..474d34b 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "files": ["src/schema.php", "src/ProcessSchema/SymfonyConfig/process-schema.php"] }, "require": { - "php": "^7.1" + "php": "^7.1 | ^8.0" }, "require-dev": { "phpunit/phpunit": "^9.0", @@ -37,5 +37,10 @@ "test-unit": "phpunit --testdox --colors=always test/unit", "test-feature": "phpunit --testdox --colors=always test/feature", "test": "phpunit --testdox --colors=always test/" + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true + } } }