Skip to content

Commit

Permalink
Add XP8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Aug 28, 2016
1 parent 2183e41 commit d7f76cf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- nightly

matrix:
allow_failures:
- php: hhvm
- php: nightly

before_script:
- wget 'https://github.com/xp-framework/xp-runners/releases/download/v6.3.0/setup' -O - | php
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 @@ ZIP File support for the XP Framework ChangeLog

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

## 7.1.0 / 2016-08-29

* Added forward compatibility with XP 8.0.0: Use File::in() instead of
the deprecated *getInputStream()*
(@thekid)

## 7.0.0 / 2016-02-21

* **Adopted semantic versioning. See xp-framework/rfc#300** - @thekid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected function archiveReaderFor($package, $name) {
->getPackage()
->getPackage($package)
->getResourceAsStream($name.'.zip')
->getInputStream()
->in()
);
}

Expand Down

0 comments on commit d7f76cf

Please sign in to comment.