Skip to content

Commit

Permalink
Add support of the PHP 8.3 (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroKlymanSpryker authored Dec 13, 2023
1 parent 6396b56 commit 2286bc6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
matrix:
php-version: [
'7.4',
'8.1',
'8.2',
'8.3'
]
steps:
- name: Checkout
Expand Down Expand Up @@ -45,7 +47,7 @@ jobs:
- name: Composer install
run: |
composer --version
if [[ ${{ matrix.php-version }} == '8.2' ]]; then
if [[ ${{ matrix.php-version }} == '8.2' || ${{ matrix.php-version }} == '8.3' ]]; then
composer update laminas/laminas-servicemanager laminas/laminas-stdlib laminas/laminas-filter --prefer-stable --optimize-autoloader
else
composer install --prefer-dist --no-interaction --optimize-autoloader
Expand Down

0 comments on commit 2286bc6

Please sign in to comment.