Skip to content

Commit

Permalink
Add support for PHP 8.3 #30
Browse files Browse the repository at this point in the history
  • Loading branch information
robert.freigang committed Apr 18, 2024
1 parent d4230e7 commit 9ddc68f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
fail-fast: false
env:
MATRIX_PHP: ${{ matrix.php }}
Expand All @@ -31,7 +31,7 @@ jobs:
with:
coverage: "xdebug"
php-version: "${{ matrix.php }}"
extensions: zip
extensions: gd, zip
tools: composer
ini-values: error_reporting=-1, display_errors=On
- name: Install dependencies
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
version: "3"
services:

php8.3:
tty: true
build:
context: .
args:
- PHP_VERSION=8.3
volumes:
- .:/var/www/html

php8.2:
tty: true
build:
Expand Down

0 comments on commit 9ddc68f

Please sign in to comment.