Skip to content

Commit 29ca962

Browse files
Merge pull request #3 from thomasnordahl-dk/master
Added PHP 8.0 to compatible PHP versions in composer.json
2 parents 7fced19 + bb9f7ba commit 29ca962

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ language: php
33
php:
44
- 7.0
55
- 7.1
6+
- 7.2
7+
- 7.3
8+
- 7.4
9+
- 8.0
610

711
before_script:
812
- 'composer install --dev --prefer-source'

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
A simple parser to split SQL (and/or DDL) files into individual SQL queries and strip comments.
44

55
[![PHP Version](https://img.shields.io/badge/php-7.0%2B-blue.svg)](https://packagist.org/packages/kodus/sql-split)
6-
[![Build Status](https://travis-ci.org/kodus/sql-split.svg?branch=master)](https://travis-ci.org/kodus/sql-split)
6+
[![PHP Version](https://img.shields.io/badge/php-8.0%2B-blue.svg)](https://packagist.org/packages/kodus/sql-split)
7+
[![Build Status](https://travis-ci.com/kodus/sql-split.svg?branch=master)](https://travis-ci.com/kodus/sql-split)
78

89
### Install via Composer
910

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.0"
13+
"php": "^7.0|^8.0"
1414
},
1515
"require-dev": {
1616
"mindplay/testies": "^0.3.0"

0 commit comments

Comments
 (0)