From 9f88ad344583831844d8f1eb96243ef91fecf479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Baptiste=20Clavi=C3=A9?= Date: Mon, 21 Dec 2020 13:23:41 +0100 Subject: [PATCH 1/2] Allow PHP8 in composer --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f1f6d48..2575cc7 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3", + "php": "^7.3 || 8.0.*", "phpactor/container": "^1.3.3", "phpactor/language-server": "^1.0.0", "phpactor/console-extension": "~0.1", @@ -56,4 +56,4 @@ "dev-master": "0.5.x-dev" } } -} \ No newline at end of file +} From 4560c601565365ed8e9ef5ba11c7c88589001033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Baptiste=20Clavi=C3=A9?= Date: Mon, 21 Dec 2020 13:29:49 +0100 Subject: [PATCH 2/2] Run tests on php 8 too --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6523e93..b2d3ccf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,6 +87,7 @@ jobs: php-version: - '7.3' - '7.4' + - '8.0' steps: -