Skip to content

Commit f111e02

Browse files
committed
- Allow PHP 8
- Updated (dev) dependencies
1 parent d7740dd commit f111e02

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ matrix:
88
- DEPENDENCIES=""
99
- EXECUTE_CS_CHECK=true
1010
- TEST_COVERAGE=true
11+
- php: 8.0
12+
env:
13+
- DEPENDENCIES=""
14+
- EXECUTE_CS_CHECK=true
15+
- TEST_COVERAGE=true
1116

1217
cache:
1318
directories:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4",
19+
"php": "^7.4 || ^8.0",
2020
"roave/security-advisories": "dev-master"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^7.0",
24-
"prooph/php-cs-fixer-config": "^0.3",
25-
"php-coveralls/php-coveralls": "^2.2",
23+
"phpunit/phpunit": "^8.0 || ^9.0",
24+
"prooph/php-cs-fixer-config": "^0.4",
25+
"php-coveralls/php-coveralls": "^2.0",
2626
"malukenho/docheader": "^0.1.4"
2727
},
2828
"autoload": {

tests/ImmutableRecordDataConverterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class ImmutableRecordDataConverterTest extends TestCase
2020
{
2121
private $data = [];
2222

23-
protected function setUp()
23+
protected function setUp(): void
2424
{
2525
parent::setUp();
2626

tests/ImmutableRecordLogicTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ final class ImmutableRecordLogicTest extends TestCase
3030
{
3131
private $data = [];
3232

33-
protected function setUp()
33+
protected function setUp(): void
3434
{
3535
parent::setUp();
3636

0 commit comments

Comments
 (0)