Skip to content

Commit 065e229

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

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Tests/SimpleCacheBridgeTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SimpleCacheBridgeTest extends TestCase
3434
*/
3535
private $itemMock;
3636

37-
protected function setUp()
37+
protected function setUp(): void
3838
{
3939
parent::setUp();
4040

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
],
1919
"homepage": "http://www.php-cache.com/en/latest/",
2020
"require": {
21-
"php": "^5.6 || ^7.0 || ^8.0",
21+
"php": "^7.1 || ^8.0",
2222
"psr/cache": "^1.0 || ^2.0",
2323
"psr/simple-cache": "^1.0"
2424
},
2525
"require-dev": {
26-
"cache/integration-tests": "^0.16",
26+
"cache/integration-tests": "^0.17",
2727
"mockery/mockery": "^1.0",
28-
"phpunit/phpunit": "^5.7.21",
28+
"phpunit/phpunit": "^7.5.20 || ^9.5.10",
2929
"symfony/cache": "^3.2"
3030
},
3131
"provide": {

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)