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,