Skip to content

Commit c9c7805

Browse files
Merge pull request #299 from GrahamCampbell/phpunit
Allow phpunit 6 too
2 parents 1b0fd5c + 17d79f5 commit c9c7805

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"php": "^5.4 || ^7.0"
1515
},
1616
"require-dev": {
17-
"phpunit/phpunit": "^4.8.35 || ^5.0"
17+
"phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
1818
},
1919
"autoload": {
2020
"psr-4": {

tests/Dotenv/ValidatorBooleanTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22

33
use Dotenv\Dotenv;
4+
use PHPUnit\Framework\TestCase;
45

5-
class ValidatorBooleanTest extends PHPUnit_Framework_TestCase
6+
class ValidatorBooleanTest extends TestCase
67
{
78
/**
89
* @var string

0 commit comments

Comments
 (0)