Skip to content

Commit c80020e

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

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Tests/RedisCachePoolTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
namespace Cache\Adapter\Redis\Tests;
1313

1414
use Cache\Adapter\Redis\RedisCachePool;
15+
use PHPUnit\Framework\TestCase;
1516

16-
class RedisCachePoolTest extends \PHPUnit_Framework_TestCase
17+
class RedisCachePoolTest extends TestCase
1718
{
1819
/**
1920
* Tests that an exception is thrown if invalid object is

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
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
"cache/adapter-common": "^1.0",
2929
"cache/hierarchical-cache": "^1.0",
3030
"psr/cache": "^1.0 || ^2.0",
3131
"psr/simple-cache": "^1.0"
3232
},
3333
"require-dev": {
34-
"cache/integration-tests": "^0.16",
35-
"phpunit/phpunit": "^5.7.21"
34+
"cache/integration-tests": "^0.17",
35+
"phpunit/phpunit": "^7.5.20 || ^9.5.10"
3636
},
3737
"provide": {
3838
"psr/cache-implementation": "^1.0",

phpunit.xml.dist

-1
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)