Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/test-extension-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
- '6.x'
services:
zookeeper:
image: confluentinc/cp-zookeeper:7.7.1
image: confluentinc/cp-zookeeper:7.9.2
ports:
- 2181:2181
env:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka:
image: confluentinc/cp-kafka:7.7.1
image: confluentinc/cp-kafka:7.9.2
ports:
- 9092:9092
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:
continue-on-error: ${{ matrix.librdkafka == 'master' }}
services:
zookeeper:
image: confluentinc/cp-zookeeper:7.7.1
image: confluentinc/cp-zookeeper:7.9.2
ports:
- 2181:2181
env:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka:
image: confluentinc/cp-kafka:7.7.1
image: confluentinc/cp-kafka:7.9.2
ports:
- 9092:9092
env:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"ircmaxell/php-c-parser": "dev-master#fd8f5efefd0fcc6c5119d945694acaa3a6790ada",
"symplify/easy-coding-standard": "^12.0",
"klitsche/ffigen": "0.8.1",
"klitsche/dog": "^0.4",
"klitsche/dog": "^0.5",
"symfony/dom-crawler": "^5.1",
"symfony/css-selector": "^5.1",
"phpbench/phpbench": "^1.1",
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ networks:

services:
zookeeper:
image: confluentinc/cp-zookeeper:7.7.1
image: confluentinc/cp-zookeeper:7.9.2
ports:
- 2181:2181
environment:
Expand All @@ -13,7 +13,7 @@ services:
- php-rdkafka-ffi

kafka:
image: confluentinc/cp-kafka:7.7.1
image: confluentinc/cp-kafka:7.9.2
ports:
- 9092:9092
hostname: kafka
Expand Down
2 changes: 1 addition & 1 deletion resources/docker/php80-librdkafka-ffi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-cli
FROM php:8.4-cli

# enable ffi and install librdkafka
ARG LIBRDKAFKA_VERSION=v2.8.0
Expand Down
2 changes: 1 addition & 1 deletion resources/docker/php81-librdkafka-ffi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-cli
FROM php:8.4-cli

# enable ffi and install librdkafka
ARG LIBRDKAFKA_VERSION=v2.8.0
Expand Down
2 changes: 1 addition & 1 deletion resources/docker/php82-librdkafka-ffi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-cli
FROM php:8.4-cli

# enable ffi and install librdkafka
ARG LIBRDKAFKA_VERSION=v2.8.0
Expand Down
2 changes: 1 addition & 1 deletion resources/docker/php83-librdkafka-ffi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3-cli
FROM php:8.4-cli

# enable ffi and install librdkafka
ARG LIBRDKAFKA_VERSION=v2.8.0
Expand Down
Loading