diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b56ed811..5348422f 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -34,9 +34,9 @@ jobs: php-version: - "8.1" - "8.2" + - "8.3" drupal-core: # Should update the following as the minimum supported version from Drupal.org - - "10.1.x" - "10.2.x" instance-type: - "Edge" @@ -137,13 +137,13 @@ jobs: sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional - name: "Run PHPUnit tests" - if: ${{ matrix.drupal-core != '10.1.x' || matrix.php-version != '8.1' }} + if: ${{ matrix.drupal-core != '10.2.x' || matrix.php-version != '8.2' }} run: | cd drupal vendor/bin/phpunit -c core --verbose --color --group apigee_edge --testsuite unit,kernel,functional,functional-javascript modules/contrib/apigee_edge - name: "Run PHPUnit tests with Code Coverage" - if: ${{ matrix.drupal-core == '10.1.x' && matrix.php-version == '8.1' }} + if: ${{ matrix.drupal-core == '10.2.x' && matrix.php-version == '8.2' }} run: | cd drupal cp modules/contrib/apigee_edge/phpunit.core.xml.dist core/phpunit.xml @@ -157,7 +157,7 @@ jobs: path: drupal/sites/simpletest/browser_output/* - name: Upload coverage to Codecov - if: ${{ matrix.drupal-core == '10.1.x' && matrix.php-version == '8.1' }} + if: ${{ matrix.drupal-core == '10.2.x' && matrix.php-version == '8.2' }} uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/composer.json b/composer.json index e652352d..80f849c0 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "type": "drupal-module", "description": "Apigee for Drupal.", "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "ext-json": "*", "apigee/apigee-client-php": "~3.0.5", "drupal/core": "^10.1",