Skip to content

Commit 2ab8d6b

Browse files
authored
Drop support for PHP 7.0 (#1234)
1 parent 717fa6b commit 2ab8d6b

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1060,10 +1060,6 @@ axes:
10601060
display_name: "PHP 7.1"
10611061
variables:
10621062
PHP_VERSION: "7.1"
1063-
- id: "7.0"
1064-
display_name: "PHP 7.0"
1065-
variables:
1066-
PHP_VERSION: "7.0"
10671063

10681064
- id: os-php7
10691065
display_name: OS
@@ -1120,9 +1116,9 @@ axes:
11201116
buildvariants:
11211117

11221118
- matrix_name: "tests-php7"
1123-
matrix_spec: {"os-php7": "*", "edge-versions": "latest-stable", "php-versions": ["7.0","7.1","7.2","7.3"] }
1119+
matrix_spec: {"os-php7": "*", "edge-versions": "latest-stable", "php-versions": ["7.1","7.2","7.3"] }
11241120
exclude_spec:
1125-
- {"os-php7": "ubuntu1804-arm64-test", "edge-versions": "latest-stable", "php-versions": ["7.0","7.1","7.2"]}
1121+
- {"os-php7": "ubuntu1804-arm64-test", "edge-versions": "latest-stable", "php-versions": ["7.1","7.2"]}
11261122
display_name: "All: ${edge-versions}/${php-versions} — ${os-php7}"
11271123
tasks:
11281124
- name: "test-standalone-ssl"

bin/package.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ necessary to build a fully-functional MongoDB driver.
5858
<dependencies>
5959
<required>
6060
<php>
61-
<min>7.0.0</min>
61+
<min>7.1.0</min>
6262
<max>8.99.99</max>
6363
</php>
6464
<pearinstaller>

config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ if test "$PHP_MONGODB" != "no"; then
2020
fi
2121

2222
AC_MSG_RESULT($PHP_MONGODB_PHP_VERSION)
23-
if test "$PHP_MONGODB_PHP_VERSION_ID" -lt "70000"; then
24-
AC_MSG_ERROR([not supported. Need a PHP version >= 7.0.0 (found $PHP_MONGODB_PHP_VERSION)])
23+
if test "$PHP_MONGODB_PHP_VERSION_ID" -lt "70100"; then
24+
AC_MSG_ERROR([not supported. Need a PHP version >= 7.1.0 (found $PHP_MONGODB_PHP_VERSION)])
2525
fi
2626

2727
PHP_ARG_ENABLE([mongodb-developer-flags],

0 commit comments

Comments
 (0)