Skip to content

Commit ead04d6

Browse files
committed
Allow PHP 8.4
1 parent ae4832c commit ead04d6

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
14+
php: [ 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 ]
1515

1616
env:
1717
ES_URL: http://127.0.0.1:9200

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ concurrency framework.
1212
- PHP 8.1
1313
- PHP 8.2
1414
- PHP 8.3
15+
- PHP 8.4
1516

1617
**Installation**
1718

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A non-blocking ElasticSearch client for PHP based on Amp.",
44
"license": "MIT",
55
"require": {
6-
"php": "~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
6+
"php": "~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0",
77
"ext-json": "*",
88
"amphp/http-client": "^4.5",
99
"amphp/amp": "^2.1"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.7'
22

33
services:
44
php:
5-
image: "php:8.3"
5+
image: "php:8.4"
66
volumes:
77
- "./:/app"
88
working_dir: "/app"

0 commit comments

Comments
 (0)