Skip to content

Commit

Permalink
Drop PHP 5.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Nov 30, 2019
1 parent 40a4119 commit 8fc4b9e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ language: php
dist: trusty

php:
- 5.6
- 7.0
- 7.1
- 7.2
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 8fc4b9e

Please sign in to comment.