We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fad726 commit cc6ae24Copy full SHA for cc6ae24
.laminas-ci/pre-install.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+WORKING_DIRECTORY=$2
4
+JOB=$3
5
+PHP_VERSION=$(echo "${JOB}" | jq -r .php)
6
7
+if [[ "${PHP_VERSION}" != "7.2" ]] && [[ "${PHP_VERSION}" != "7.3" ]]; then
8
+ exit 0
9
+fi
10
11
+composer require --dev phpunit/phpunit:^8.5.31 --no-update --update-with-dependencies
composer.json
@@ -11,10 +11,10 @@
}
12
],
13
"require": {
14
- "php": "^7.2 || ~8.0.0 || ~8.1.0 || ~8.2.0"
+ "php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
15
},
16
"require-dev": {
17
- "phpunit/phpunit": "^8 || ^9 || ^10"
+ "phpunit/phpunit": "^9.5.10"
18
19
"autoload": {
20
"psr-4": {
0 commit comments