Skip to content

Commit

Permalink
Support for PHP 8.3 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick authored Oct 30, 2023
1 parent b020089 commit 44f417c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2]
php: ['8.0', 8.1, 8.2, 8.3]
stability: [lowest, highest]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
Expand All @@ -44,11 +44,15 @@ jobs:

- if: matrix.php == '8.1'
name: Require packages for PHP 8.1
run: composer require orchestra/testbench:'^6.23 || ^7.0 || ^8.0' --no-update
run: composer require orchestra/testbench:'^6.23 || ^7.0 || ^8.0' --no-update --dev

- if: matrix.php == '8.2'
name: Require packages for PHP 8.2
run: composer require orchestra/testbench:'^6.23 || ^7.0 || ^8.0' nesbot/carbon:^2.62.1 --no-update
run: composer require orchestra/testbench:'^6.23 || ^7.0 || ^8.0' nesbot/carbon:^2.62.1 --no-update --dev

- if: matrix.php == '8.3'
name: Require packages for PHP 8.3
run: composer require orchestra/testbench:'^6.23 || ^7.0 || ^8.0' nesbot/carbon:^2.62.1 --no-update --dev

- name: Install dependencies
uses: ramsey/composer-install@v2
Expand Down

0 comments on commit 44f417c

Please sign in to comment.