Skip to content

Commit d7f76cf

Browse files
committed
Add XP8 compatibility
1 parent 2183e41 commit d7f76cf

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ php:
88
- 5.5
99
- 5.6
1010
- 7.0
11+
- 7.1
1112
- hhvm
13+
- nightly
1214

1315
matrix:
1416
allow_failures:
1517
- php: hhvm
18+
- php: nightly
1619

1720
before_script:
1821
- wget 'https://github.com/xp-framework/xp-runners/releases/download/v6.3.0/setup' -O - | php

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ ZIP File support for the XP Framework ChangeLog
33

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

6+
## 7.1.0 / 2016-08-29
7+
8+
* Added forward compatibility with XP 8.0.0: Use File::in() instead of
9+
the deprecated *getInputStream()*
10+
(@thekid)
11+
612
## 7.0.0 / 2016-02-21
713

814
* **Adopted semantic versioning. See xp-framework/rfc#300** - @thekid

src/test/php/io/archive/zip/unittest/AbstractZipFileTest.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function archiveReaderFor($package, $name) {
4040
->getPackage()
4141
->getPackage($package)
4242
->getResourceAsStream($name.'.zip')
43-
->getInputStream()
43+
->in()
4444
);
4545
}
4646

0 commit comments

Comments
 (0)