Skip to content

Commit 2c2f70d

Browse files
committed
Drop PHP 5.5 support
1 parent 6db528c commit 2c2f70d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
language: php
44

5+
dist: trusty
6+
57
php:
6-
- 5.5
78
- 5.6
89
- 7.0
910
- 7.1
@@ -15,12 +16,9 @@ matrix:
1516
- php: nightly
1617

1718
before_script:
18-
- wget 'https://github.com/xp-framework/xp-runners/releases/download/v5.6.1/setup' -O - | php
19+
- curl -sSL https://dl.bintray.com/xp-runners/generic/xp-run-master.sh > xp-run
1920
- composer install --prefer-dist
2021
- echo "vendor/autoload.php" > composer.pth
21-
- echo "use=vendor/xp-framework/core" > xp.ini
22-
- echo "[runtime]" >> xp.ini
23-
- echo "date.timezone=Europe/Berlin" >> xp.ini
2422

2523
script:
26-
- ./unittest src/test/php
24+
- sh xp-run xp.unittest.TestRunner src/test/php

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Pattern matching changelog
55

66
## 8.0.0 / 2017-05-29
77

8+
* **Heads up:** Dropped PHP 5.5 support - @thekid
89
* Merged PR #1: Forward compatibility with XP 9.0.0 - @thekid
910

1011
## 7.1.0 / 2016-08-28

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"keywords": ["module", "xp"],
88
"require" : {
99
"xp-framework/core": "^9.0 | ^8.0 | ^7.0 | ^6.5",
10-
"php" : ">=5.5.0"
10+
"php" : ">=5.6.0"
1111
},
1212
"require-dev" : {
1313
"xp-framework/unittest": "^9.0 | ^8.0 | ^7.0 | ^6.5"

0 commit comments

Comments
 (0)