FROM php:7.3.28-buster
WORKDIR /tmp
RUN apt update && \
apt install -y --no-install-recommends git subversion autoconf build-essential && \
rm -rf /var/lib/apt/lists/*
RUN git clone --recursive --depth=1 https://github.com/m6w6/ext-http /tmp/ext-src && \
cd /tmp/ext-src && \
phpize && \
./configure --with-http && \
make && \
make test
This extension requires PHP 8.0.0 or later.