From 1f7728d7f9aaff2d0fe633e96bf4e3a201fc5368 Mon Sep 17 00:00:00 2001 From: Matthias Vogel Date: Fri, 3 Nov 2023 15:39:16 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20add=20php8.3=20compat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run-grumphp-test.yml | 9 ++++----- composer.json | 4 ++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-grumphp-test.yml b/.github/workflows/run-grumphp-test.yml index ac91e76..c47a8be 100644 --- a/.github/workflows/run-grumphp-test.yml +++ b/.github/workflows/run-grumphp-test.yml @@ -6,12 +6,11 @@ jobs: strategy: fail-fast: false matrix: - php: - - '8.1' - - '8.2' + php: ['8.1', '8.2', '8.3-rc'] container: image: kanti/buildy:${{ matrix.php }} steps: - - uses: actions/checkout@v2 - - run: COMPOSER_ROOT_VERSION=dev-main composer install --no-progress --no-scripts -n + - uses: actions/checkout@v4 + - run: git config --global --add safe.directory /__w/grumphp-xliff-task/grumphp-xliff-task + - run: COMPOSER_ROOT_VERSION=dev-main composer install --no-progress --no-scripts -n --ignore-platform-req=php+ - run: ./vendor/bin/grumphp run diff --git a/composer.json b/composer.json index 95cd9c9..298e411 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "issues": "https://github.com/pluswerk/grumphp-xliff-task/issues" }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "ext-dom": "*", "phpro/grumphp": "^2.0.0" }, @@ -28,9 +28,9 @@ }, "config": { "allow-plugins": { + "ergebnis/composer-normalize": true, "phpro/grumphp": true, "phpstan/extension-installer": true, - "ergebnis/composer-normalize": true, "pluswerk/grumphp-config": true } },