We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7d40f commit 4bf3efcCopy full SHA for 4bf3efc
.laminas-ci.json
@@ -4,5 +4,10 @@
4
"--no-plugins"
5
],
6
"ignore_php_platform_requirements": {
7
+ },
8
+ "tools": {
9
+ "php": {
10
+ "extensions": ["redis"]
11
+ }
12
}
-}
13
+}
.laminas-ci/pre-run.sh
@@ -1,12 +1,5 @@
1
#!/bin/bash
2
3
-PHP_VERSION="$1"
-
-apt update
-apt install -y make php-dev php-pear
-pecl install redis
-echo "extension=redis.so" | sudo tee /etc/php/${PHP_VERSION}/mods-available/redis.ini
-sudo phpenmod -v ${PHP_VERSION} -s cli redis
+# Due to the fact that we are disabling plugins when installing/updating/downgrading composer dependencies
+# we have to manually enable the coding standard here.
+composer enable-codestandard
0 commit comments