Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add php 8.4 #19

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
matrix:
version: [ '8.0', '8.1', '8.2', '8.3' ]
extensions: [ 'pcntl xdebug zip intl bcmath rdkafka pdo_pgsql pdo_mysql gd' ]
include:
- version: "8.4"
extensions: "pcntl zip intl bcmath pdo_pgsql pdo_mysql"

runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ alias php80='docker run --rm -it --volume $PWD:/app -w /app ghcr.io/patchlevel/p
alias php81='docker run --rm -it --volume $PWD:/app -w /app ghcr.io/patchlevel/php:8.1'
alias php82='docker run --rm -it --volume $PWD:/app -w /app ghcr.io/patchlevel/php:8.2'
alias php83='docker run --rm -it --volume $PWD:/app -w /app ghcr.io/patchlevel/php:8.3'
alias php84='docker run --rm -it --volume $PWD:/app -w /app ghcr.io/patchlevel/php:8.4'
```
Loading