diff --git a/.travis.yml b/.travis.yml index 823fb805..f664c2e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,8 @@ matrix: env: COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false - php: hhvm env: COLLECT_COVERAGE=false VALIDATE_CODING_STYLE=false + allow_failures: + - php: hhvm fast_finish: true cache: diff --git a/CHANGELOG.md b/CHANGELOG.md index d377b771..e5960243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,8 +14,9 @@ All Notable changes to `Csv` will be documented in this file ### Fixed -- getInputBOM consistent everywhere in the API [PR #171](https://github.com/thephpleague/csv/pull/171) +- `getInputBOM` method name is now consistent everywhere in the API [PR #171](https://github.com/thephpleague/csv/pull/171) - preserve fileObject CSV controls [commit #8a20c56](https://github.com/thephpleague/csv/commit/8a20c56144effa552a8cba5d8c626063222975b7) +- Change `output` method header content-type value to `text/csv` [PR #175](https://github.com/thephpleague/csv/pull/175) ### Removed diff --git a/README.md b/README.md index 27dc4610..b179d1bf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ CSV [![Latest Version](https://img.shields.io/github/release/thephpleague/csv.svg?style=flat-square)](https://github.com/thephpleague/csv/releases) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) [![Build Status](https://img.shields.io/travis/thephpleague/csv/master.svg?style=flat-square)](https://travis-ci.org/thephpleague/csv) -[![HHVM Status](https://img.shields.io/hhvm/league/csv.svg?style=flat-square)](http://hhvm.h4cc.de/package/league/csv) [![Coverage Status](https://img.shields.io/scrutinizer/coverage/g/thephpleague/csv.svg?style=flat-square)](https://scrutinizer-ci.com/g/thephpleague/csv/code-structure) [![Quality Score](https://img.shields.io/scrutinizer/g/thephpleague/csv.svg?style=flat-square)](https://scrutinizer-ci.com/g/thephpleague/csv) [![Total Downloads](https://img.shields.io/packagist/dt/league/csv.svg?style=flat-square)](https://packagist.org/packages/league/csv) @@ -34,7 +33,7 @@ Full documentation can be found at [csv.thephpleague.com](http://csv.thephpleagu System Requirements ------- -You need **PHP >= 5.5.0** and the `mbstring` extension to use `Csv` but the latest stable version of PHP/HHVM is recommended. +You need **PHP >= 5.5.0** and the `mbstring` extension to use `Csv` but the latest stable version of PHP is recommended. Install -------