diff options
author | Andrey Andreev <narf@devilix.net> | 2016-07-26 19:21:39 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-07-26 19:21:39 +0200 |
commit | 54f6a09e22a0d564317fc84ea32a9c7072bebe0f (patch) | |
tree | df0eba555e4fe71ba77892c0c3853ff91dc1133c | |
parent | 850a3c91a191256967d6fc81dda26a7c8ff258c0 (diff) |
[ci skip] Officially drop PHP 5.2.x
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | readme.rst | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index e531f8d90..b32390dfb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.2 - 5.3 - 5.4 - 5.5 @@ -21,7 +20,6 @@ env: sudo: false before_script: - - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear channel-discover pear.bovigo.org && pear install bovigo/vfsStream-beta; else composer install --dev --no-progress; fi" - sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi" @@ -30,7 +28,6 @@ script: phpunit -d zend.enable_gc=0 -d date.timezone=UTC --coverage-text --confi matrix: allow_failures: - - php: 5.2 - php: 5.3 - php: hhvm exclude: diff --git a/readme.rst b/readme.rst index 7a376322d..f5d737028 100644 --- a/readme.rst +++ b/readme.rst @@ -31,7 +31,7 @@ Server Requirements PHP version 5.6 or newer is recommended. -It should work on 5.2.4 as well, but we strongly advise you NOT to run +It should work on 5.3.7 as well, but we strongly advise you NOT to run such old versions of PHP, because of potential security and performance issues, as well as missing features. |