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 9873259 commit f7b340dCopy full SHA for f7b340d
.laminas-ci.json
@@ -5,11 +5,6 @@
5
"extensions": [
6
"redis"
7
],
8
- "before_script": [
9
- "sudo apt-get update && sudo apt-get install -y php-dev php-pear libcurl4-openssl-dev libssl-dev gcc make autoconf",
10
- "sudo pecl install swoole",
11
- "echo 'extension=swoole.so' | sudo tee /etc/php/cli/conf.d/20-swoole.ini"
12
- ],
13
"ignore_php_platform_requirements": {
14
}
15
.laminas-ci/pre-run.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+JOB=$3
4
+PHP_VERSION=$(echo "${JOB}" | jq -r '.php')
+apt update
+apt install -y "php${PHP_VERSION}-swoole"
0 commit comments