Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- 8.1snapshot
- 8.2snapshot
- 8.3snapshot
- 8.4snapshot
zts: [on, off]
opcache: [on, off]
steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM php:8.3-alpine
FROM php:8.4-alpine

RUN apk add --no-cache $PHPIZE_DEPS valgrind

COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ environment:
matrix:
- ARCH: x86
INT_SIZE: 32
PHP_VER: 8.3
PHP_VER: 8.4
VC_VER: vc15
ZTS: --enable-zts
- ARCH: x64
INT_SIZE: 64
PHP_VER: 8.3
PHP_VER: 8.4
VC_VER: vc15
ZTS: --enable-zts
- ARCH: x86
INT_SIZE: 32
PHP_VER: 8.3
PHP_VER: 8.4
VC_VER: vc15
ZTS: --disable-zts
- ARCH: x64
INT_SIZE: 64
PHP_VER: 8.3
PHP_VER: 8.4
VC_VER: vc15
ZTS: --disable-zts

Expand Down
Loading