From 71d6d38973199413c23f084434cf1a6f4d03dff1 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Fri, 12 Jan 2024 16:31:41 +0100 Subject: [PATCH] test on newer PHP --- .github/workflows/continuous-integration.yml | 8 ++++---- composer.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 5ef63e2d..0cde952c 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -10,13 +10,13 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2, 8.3] dependency-versions: [lowest, highest] name: Tests - P${{ matrix.php }} - ${{ matrix.dependency-versions }} - ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: @@ -41,13 +41,13 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2, 8.3] dependency-versions: [lowest, highest] name: Static Analysis - P${{ matrix.php }} - ${{ matrix.dependency-versions }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: diff --git a/composer.json b/composer.json index f4d995e6..fa04ee7c 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ "phpstan/phpstan-phpunit": "^1.1.1", "phpunit/phpunit": "^9.5.21 || ^10", "rector/rector": "^0.19", - "symplify/rule-doc-generator": "^12" + "symplify/rule-doc-generator": "^11 || ^12" }, "minimum-stability": "dev", "prefer-stable": true,