From 8fc4b9ecde2697629b576c948b5c7c1b4850ea58 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sat, 30 Nov 2019 10:23:31 +0100 Subject: [PATCH] Drop PHP 5.6 support --- .travis.yml | 1 - ChangeLog.md | 4 ++++ README.md | 3 +-- composer.json | 6 +++--- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9acd58f..be1a7b3 100755 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ language: php dist: trusty php: - - 5.6 - 7.0 - 7.1 - 7.2 diff --git a/ChangeLog.md b/ChangeLog.md index 8e4484a..b642e3f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,10 @@ Tokenize log ## ?.?.? / ????-??-?? +## 9.0.0 / 2019-11-30 + +* Dropped support for PHP 5.6, see xp-framework/rfc#334 - @thekid + ## 8.1.1 / 2019-11-30 * Added compatibility with XP 10, see xp-framework/rfc#333 - @thekid diff --git a/README.md b/README.md index 610cf32..11b43a8 100755 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ Tokenize [![Build Status on TravisCI](https://secure.travis-ci.org/xp-framework/tokenize.svg)](http://travis-ci.org/xp-framework/tokenize) [![XP Framework Module](https://raw.githubusercontent.com/xp-framework/web/master/static/xp-framework-badge.png)](https://github.com/xp-framework/core) [![BSD Licence](https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png)](https://github.com/xp-framework/core/blob/master/LICENCE.md) -[![Required PHP 5.5+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-5_5plus.png)](http://php.net/) -[![Supports PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.png)](http://php.net/) +[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.png)](http://php.net/) [![Latest Stable Version](https://poser.pugx.org/xp-framework/tokenize/version.png)](https://packagist.org/packages/xp-framework/tokenize) Tokenizing text diff --git a/composer.json b/composer.json index 353cf99..46fa122 100755 --- a/composer.json +++ b/composer.json @@ -6,11 +6,11 @@ "description" : "Text tokenizing", "keywords": ["module", "xp"], "require" : { - "xp-framework/core": "^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5", - "php" : ">=5.6.0" + "xp-framework/core": "^10.0 | ^9.0 | ^8.0 | ^7.0", + "php" : ">=7.0.0" }, "require-dev" : { - "xp-framework/unittest": "^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5" + "xp-framework/unittest": "^10.0 | ^9.0 | ^8.0 | ^7.0" }, "autoload" : { "files" : ["src/main/php/autoload.php"]