From af549dc47e5d0f9d841732475e7f9d9a6abb0371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bl=C3=A4ul?= Date: Sun, 21 Jan 2018 14:52:51 +0100 Subject: [PATCH] Updated .travis.yml to test with PHP 7.2 --- .travis.yml | 1 + README.md | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f66862..3969360 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: php php: + - 7.2 - 7.1 - 7.0 - 5.6 diff --git a/README.md b/README.md index 50b6aad..83b4fcd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # parseCSV -Note: parseCSV is now being revised to PHP 5 standards. If you have an issue or a feature request we encourage you to open an issue. - parseCSV is an easy to use PHP class that reads and writes CSV data properly. It fully conforms to the specifications outlined on the on the [Wikipedia article][CSV]. It has many advanced features which help make your @@ -38,7 +36,7 @@ require_once 'parsecsv.lib.php'; how different programs like Excel for example outputs CSV data. * Support for character encoding conversion using PHP's _iconv_ function (requires PHP 5). -* Supports both PHP 4 & 5. +* Supports PHP 5.4 and higher. It certainly works with PHP 7.2 ## Example Usage