php-ext.com / ahocorasick (from dev using PHP 8.0.5-buster)

Dockerfile
FROM php:8.0.5-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/ph4r05/php_aho_corasick /tmp/ext-src && \
    cd /tmp/ext-src && \
    phpize && \
    ./configure --enable-ahocorasick && \
    make && \
    make test
Build output SKIP 1ss
This extension requires PHP 7.3.99 or older.