Skip to content

Commit

Permalink
Add support for PHPUnit 9
Browse files Browse the repository at this point in the history
  • Loading branch information
misantron committed Jul 7, 2020
1 parent cebae75 commit a3e5d3c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

All notable changes to DbUnit are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [5.1.0] - 2020-07-07

### Updated

* Add support for PHPUnit 9

## [5.0.0] - 2019-07-30

### Updated
Expand Down
3 changes: 1 addition & 2 deletions README.md
@@ -1,6 +1,5 @@
# DbUnit fork for PHPUnit 8
# DbUnit fork supporting PHPUnit 8/9

![PHP](https://img.shields.io/badge/php-7.2-blueviolet.svg?style=flat-square&maxAge=2592000)
[![Build Status](https://img.shields.io/travis/com/misantron/dbunit.svg?style=flat-square&maxAge=2592000)](https://travis-ci.com/misantron/dbunit)
[![Code Coverage](https://img.shields.io/coveralls/github/misantron/dbunit.svg?style=flat-square)](https://coveralls.io/github/misantron/dbunit)
[![Version](https://img.shields.io/packagist/v/misantron/dbunit.svg?style=flat-square)](https://packagist.org/packages/misantron/dbunit)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
@@ -1,6 +1,6 @@
{
"name": "misantron/dbunit",
"description": "DbUnit fork for PHPUnit 8",
"description": "DbUnit fork supporting PHPUnit 8/9",
"type": "library",
"keywords": [
"database",
Expand All @@ -24,7 +24,7 @@
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"phpunit/phpunit": "^8.5|^9.0",
"phpunit/phpunit": "^8.5|^9.2",
"symfony/yaml": "^4.4|^5.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit-travis.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
Expand Down

0 comments on commit a3e5d3c

Please sign in to comment.