diff --git a/.travis.yml b/.travis.yml index ecf0178..ac4b64e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,10 @@ language: php php: - 7.0 - 7.1 + - 7.2 + - 7.3 + - 7.4 + - 8.0 before_script: - 'composer install --dev --prefer-source' diff --git a/README.md b/README.md index 9f39aaf..48aa969 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,8 @@ A simple parser to split SQL (and/or DDL) files into individual SQL queries and strip comments. [![PHP Version](https://img.shields.io/badge/php-7.0%2B-blue.svg)](https://packagist.org/packages/kodus/sql-split) -[![Build Status](https://travis-ci.org/kodus/sql-split.svg?branch=master)](https://travis-ci.org/kodus/sql-split) +[![PHP Version](https://img.shields.io/badge/php-8.0%2B-blue.svg)](https://packagist.org/packages/kodus/sql-split) +[![Build Status](https://travis-ci.com/kodus/sql-split.svg?branch=master)](https://travis-ci.com/kodus/sql-split) ### Install via Composer diff --git a/composer.json b/composer.json index 3e943b3..f8ddbcc 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.0" + "php": "^7.0|^8.0" }, "require-dev": { "mindplay/testies": "^0.3.0"