Skip to content

Commit e5b1502

Browse files
committed
PHPC-1377: Remove support for PHP 5.5
1 parent 2bb1894 commit e5b1502

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -606,10 +606,6 @@ axes:
606606
display_name: "PHP 5.6"
607607
variables:
608608
PHP_VERSION: "5.6.38"
609-
- id: "5.5"
610-
display_name: "PHP 5.5"
611-
variables:
612-
PHP_VERSION: "5.5.38"
613609

614610
- id: os-php5
615611
display_name: OS
@@ -667,7 +663,7 @@ axes:
667663
buildvariants:
668664

669665
- matrix_name: "tests-php5"
670-
matrix_spec: {"os-php5": "*", "versions": "4.0", "php-versions": ["5.5", "5.6"] }
666+
matrix_spec: {"os-php5": "*", "versions": "4.0", "php-versions": "5.6" }
671667
display_name: "All: ${versions}/${php-versions} — ${os-php5}"
672668
tasks:
673669
- name: "test-standalone-ssl"

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ matrix:
2121
env:
2222
- TESTS=tests/atlas.phpt
2323
- TEST_PHP_ARGS="-q -s output.txt -x --show-diff"
24-
- php: 5.5
25-
dist: trusty
26-
env:
27-
- SERVER_DISTRO=ubuntu1404
2824
- php: 5.6
2925
- php: 7.0
3026
- php: 7.1

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,14 +192,14 @@ executed directly.
192192

193193
### Ensure PHP version compatibility
194194

195-
Ensure that the extension compiles on PHP 5.5 through the latest PHP 7.x
195+
Ensure that the extension compiles on PHP 5.6 through the latest PHP 7.x
196196
release. Be sure to test both ZTS and non-ZTS builds for PHP 5.x.
197197

198198
### Ensure Windows compatibility
199199

200200
PECL will create Windows DLLs for new releases; however, you must ensure that
201-
the extension successfully builds on Windows before releasing. Note that PHP 5.5
202-
and 5.6 require VS2012, while PHP 7.x requires VS2015.
201+
the extension successfully builds on Windows before releasing. Note that PHP 5.6
202+
requires VS2012, while PHP 7.x requires VS2015.
203203

204204
Given the following assumptions:
205205

bin/package.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ necessary to build a fully-functional MongoDB driver.
5252
<dependencies>
5353
<required>
5454
<php>
55-
<min>5.5.0</min>
55+
<min>5.6.0</min>
5656
<max>7.99.99</max>
5757
</php>
5858
<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 "50500"; then
24-
AC_MSG_ERROR([not supported. Need a PHP version >= 5.5.0 (found $PHP_MONGODB_PHP_VERSION)])
23+
if test "$PHP_MONGODB_PHP_VERSION_ID" -lt "50600"; then
24+
AC_MSG_ERROR([not supported. Need a PHP version >= 5.6.0 (found $PHP_MONGODB_PHP_VERSION)])
2525
fi
2626

2727
PHP_ARG_ENABLE([mongodb-developer-flags],

0 commit comments

Comments
 (0)