Skip to content

Commit d405e42

Browse files
authored
Drop PHP 5.6 + 7.0 (#257)
* Drop PHP 5.6 + 7.0 * Remove `syntaxCheck` * Add void
1 parent ffc9c64 commit d405e42

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Tests/SimpleCacheUtilTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313

1414
use Cache\Adapter\PHPArray\ArrayCachePool;
1515
use Cache\Util;
16+
use PHPUnit\Framework\TestCase;
1617

17-
class SimpleCacheUtilTest extends \PHPUnit_Framework_TestCase
18+
class SimpleCacheUtilTest extends TestCase
1819
{
1920
public function testRememberCacheHit()
2021
{

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
],
2525
"homepage": "http://www.php-cache.com/en/latest/",
2626
"require": {
27-
"php": "^5.6 || ^7.0 || ^8.0",
27+
"php": "^7.1 || ^8.0",
2828
"psr/cache": "^1.0 || ^2.0"
2929
},
3030
"require-dev": {
3131
"cache/array-adapter": "^1.0",
32-
"phpunit/phpunit": "^5.7.21"
32+
"phpunit/phpunit": "^7.5.20 || ^9.5.10"
3333
},
3434
"minimum-stability": "dev",
3535
"prefer-stable": true,

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
bootstrap="vendor/autoload.php"
1312
>
1413
<testsuites>

0 commit comments

Comments
 (0)