We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 845e27f commit dc7d40fCopy full SHA for dc7d40f
.laminas-ci/pre-run.sh
@@ -1,7 +1,12 @@
1
#!/bin/bash
2
3
PHP_VERSION="$1"
4
-apt install make
5
-pecl install swoole
6
-echo "extension=swoole.so" > /etc/php/${PHP_VERSION}/mods-available/60-swoole.ini
7
-phpenmod -v ${PHP} -s cli swoole
+
+apt update
+apt install -y make php-dev php-pear
8
+pecl install redis
9
10
+echo "extension=redis.so" | sudo tee /etc/php/${PHP_VERSION}/mods-available/redis.ini
11
12
+sudo phpenmod -v ${PHP_VERSION} -s cli redis
0 commit comments