Skip to content

Commit

Permalink
Drop PHP 5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Apr 5, 2020
1 parent 3b6f562 commit 1a82e08
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Web tests change log

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

## 7.0.0 / 2020-04-05

* Implemented xp-framework/rfc#334: Drop PHP 5.6. The minimum required
PHP version is now 7.0.0!
(@thekid)

## 6.6.0 / 2020-04-05

* Added `WebTestCase::getCookies()` to access all cookies - @thekid
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ Webtest
[![Build Status on TravisCI](https://secure.travis-ci.org/xp-framework/webtest.svg)](http://travis-ci.org/xp-framework/webtest)
[![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/)
[![Supports HHVM 3.4+](https://raw.githubusercontent.com/xp-framework/web/master/static/hhvm-3_4plus.png)](http://hhvm.com/)
[![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/webtest/version.png)](https://packagist.org/packages/xp-framework/webtest)

Web tests for the XP Framework
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"description" : "Web tests for the XP Framework",
"keywords": ["module", "xp"],
"require" : {
"xp-framework/core": "^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5",
"xp-framework/http": "^9.0 | ^8.0 | ^7.0 | ^6.5",
"xp-framework/xml": "^9.0 | ^8.0 | ^7.0 | ^6.5",
"xp-framework/logging": "^9.0 | ^8.0 | ^7.0 | ^6.5",
"xp-framework/patterns": "^8.0 | ^7.0 | ^6.5",
"xp-framework/unittest": "^11.0 | ^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5",
"php" : ">=5.6.0"
"xp-framework/core": "^10.0 | ^9.0 | ^8.0",
"xp-framework/http": "^9.0 | ^8.0",
"xp-framework/xml": "^9.0 | ^8.0",
"xp-framework/logging": "^9.0 | ^8.0",
"xp-framework/patterns": "^8.0",
"xp-framework/unittest": "^11.0 | ^10.0 | ^9.0 | ^8.0",
"php" : ">=7.0.0"
},
"autoload" : {
"files" : ["src/main/php/autoload.php"]
Expand Down

0 comments on commit 1a82e08

Please sign in to comment.