-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
6,408 additions
and
4,783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
engines: | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- php | ||
exclude_paths: | ||
- tests/ | ||
- vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
language: php | ||
php: | ||
- '5.5' | ||
- '5.6' | ||
- '7.0' | ||
- '7.1' | ||
- hhvm | ||
- nightly | ||
|
||
# cache vendor dirs | ||
cache: | ||
directories: | ||
- vendor | ||
- $HOME/.composer/cache | ||
|
||
addons: | ||
code_climate: | ||
repo_token: 486a09d58d663450146c53c81c6c64938bcf3bb0b7c8ddebdc125fe97c18213a | ||
|
||
install: | ||
- travis_retry composer self-update && composer --version | ||
- travis_retry composer install --prefer-dist --no-interaction | ||
|
||
before_script: | ||
- sudo apt-get install p7zip-full | ||
|
||
script: | ||
- composer validate --no-check-lock | ||
- vendor/bin/phpunit -v -c bootstrap.xml --coverage-clover build/logs/clover.xml | ||
|
||
after_success: | ||
- vendor/bin/test-reporter | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
## 2.2.0 (2017-03-02) | ||
## 3.0.0 (2017-03-15) | ||
Merge `ZipOutputFile` with ZipFile and optimize the zip archive update. | ||
|
||
See the update instructions in README.md. | ||
|
||
## 2.2.0 (2017-03-02) | ||
Features: | ||
- create output object `ZipOutputFile` from `ZipFile` in method `ZipFile::edit()`. | ||
- create output object `ZipOutputFile` from filename in static method `ZipOutputFile::openFromFile(string $filename)`. |
Oops, something went wrong.