Skip to content

Commit

Permalink
Add PHP 8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
youwe-petervanderwal committed May 27, 2024
1 parent 7e2b8d3 commit 6b26a58
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.4, 8.0 ]
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]

env:
ES_URL: http://127.0.0.1:9200
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ concurrency framework.

- PHP 7.4
- PHP 8.0
- PHP 8.1
- PHP 8.2
- PHP 8.3

**Installation**

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A non-blocking ElasticSearch client for PHP based on Amp.",
"license": "MIT",
"require": {
"php": "~7.4.0|~8.0.0",
"php": "~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"ext-json": "*",
"amphp/http-client": "^4.5",
"amphp/amp": "^2.1"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
php:
image: "php:8.0"
image: "php:8.3"
volumes:
- "./:/app"
working_dir: "/app"
Expand Down

0 comments on commit 6b26a58

Please sign in to comment.