1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/travis/install-fiber.sh
2020-10-03 10:00:25 -05:00

11 lines
242 B
Bash
Executable File

#!/usr/bin/env bash
git clone https://github.com/amphp/ext-fiber \
&& pushd ext-fiber \
&& phpize \
&& ./configure \
&& make -j4 \
&& make install \
&& popd \
&& echo "extension=fiber.so" >> "$(php -r 'echo php_ini_loaded_file();')";