Skip to content

Commit

Permalink
Merge branch 'release/3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne-Lexa committed Mar 15, 2017
2 parents d8e40ee + 9716976 commit 67fc1ea
Show file tree
Hide file tree
Showing 36 changed files with 6,408 additions and 4,783 deletions.
9 changes: 9 additions & 0 deletions .codeclimate.yml
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/
33 changes: 33 additions & 0 deletions .travis.yml
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

6 changes: 5 additions & 1 deletion CHANGELOG.md
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)`.
Loading

0 comments on commit 67fc1ea

Please sign in to comment.