Content of composer.json
is Laravel application with Octane
and Dockerfile
is exact copy used in development of the application where the issue was first found (BASE IMAGE).
I haven't checked if this issue can be reproduced on "bare metal" php instalation, as app only uses docker for development and production.
One more note, Octane
works fine when vendor is installed, and this issue (as found) was reproducable only with composer.
When compiling Swoole with --enable-swoole-curl
on PHP 8.3 causes CURL to SEGFAULT
This repository provides Makefile
with commands to reproduce the issue.
# Optional argument PHP_VERSION=8.x -> provide different PHP version
# Default is 8.3
make build
This command will create TWO docker images -> one with --enable-swoole-curl
and one without it
also supported argument PHP_VERSION
install-without-curl
install-with-curl
update-with-curl
update-without-curl
php-ri
make install-with-curl
Dumps core
file for futher examanation
- PHP 8.3
- PHP 8.2
-> NO FURTHER TESTING DONE
My assumption is that everything works fine for php < 8.3
as PHP 8.2 works fine (testing done with the same docker image, installing PHP 8.2)