Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

Commit

Permalink
Implement xp-framework/rfc#334: Drop PHP 5.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Sep 30, 2019
1 parent 70bdc4b commit c49c5d6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 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
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Unittests change log

## ?.?.? / ????-??-??

## 10.0.0 / ????-??-??

* Added support for XP 10 and newer versions of library dependencies
(@thekid)
* Implemented xp-framework/rfc#334: Drop PHP 5.6. The minimum required
PHP version is now 7.0.0!
(@thekid)

## 9.7.1 / 2019-08-22

* Rewrote `unittest.actions.VerifyThat` to no longer user the deprecated
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 @@ Unittests
[![Build Status on TravisCI](https://secure.travis-ci.org/xp-framework/unittest.svg)](http://travis-ci.org/xp-framework/unittest)
[![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.6+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-5_6plus.png)](http://php.net/)
[![Supports PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.png)](http://php.net/)
[![Required 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/unittest/version.png)](https://packagist.org/packages/xp-framework/unittest)

Unittests for the XP Framework
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"description" : "Unittests for the XP Framework",
"keywords": ["module", "xp"],
"require" : {
"xp-framework/core": "^9.0 | ^8.0 | ^7.0 | ^6.10",
"php" : ">=5.6.0"
"xp-framework/core": "^10.0 | ^9.0 | ^8.0 | ^7.0",
"php" : ">=7.0.0"
},
"bin": ["bin/xp.xp-framework.unittest.test"],
"autoload" : {
Expand Down

0 comments on commit c49c5d6

Please sign in to comment.