Skip to content

Commit a1eb413

Browse files
committed
Drop PHP 5.6
1 parent 8e2ac18 commit a1eb413

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ language: php
55
dist: trusty
66

77
php:
8-
- 5.6
98
- 7.0
109
- 7.1
1110
- 7.2

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Is operator for PHP - ChangeLog
33

44
## ?.?.? / ????-??-??
55

6+
## 1.0.0 / 2019-11-30
7+
8+
* Implemented xp-framework/rfc#334: Drop PHP 5.6. The minimum required
9+
PHP version is now 7.0.0!
10+
(@thekid)
11+
612
## 0.1.0 / 2019-09-09
713

814
* Hello World! First release - @thekid

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ Is operator for PHP
44
[![Build Status on TravisCI](https://secure.travis-ci.org/xp-lang/php-is-operator.svg)](http://travis-ci.org/xp-lang/php-is-operator)
55
[![XP Framework Module](https://raw.githubusercontent.com/xp-framework/web/master/static/xp-framework-badge.png)](https://github.com/xp-framework/core)
66
[![BSD Licence](https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png)](https://github.com/xp-framework/core/blob/master/LICENCE.md)
7-
[![Required PHP 5.6+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-5_6plus.png)](http://php.net/)
8-
[![Supports PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.png)](http://php.net/)
7+
[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.png)](http://php.net/)
98
[![Latest Stable Version](https://poser.pugx.org/xp-lang/php-is-operator/version.png)](https://packagist.org/packages/xp-lang/php-is-operator)
109

1110
Plugin for the [XP Compiler](https://github.com/xp-framework/compiler/) which adds an `is` operator to the PHP language.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"description" : "Is operator for PHP",
77
"keywords": ["language", "module", "xp"],
88
"require" : {
9-
"xp-framework/core": "^9.0 | ^8.0 | ^7.0",
10-
"xp-framework/compiler": "^4.0",
11-
"php" : ">=5.6.0"
9+
"xp-framework/core": "^10.0 | ^9.0 | ^8.0 | ^7.0",
10+
"xp-framework/compiler": "^5.0 | ^4.3",
11+
"php" : ">=7.0.0"
1212
},
1313
"require-dev" : {
14-
"xp-framework/unittest": "^9.0 | ^8.0"
14+
"xp-framework/unittest": "^11.0 | ^10.0"
1515
},
1616
"autoload" : {
1717
"files" : ["src/main/php/autoload.php"]

0 commit comments

Comments
 (0)