Skip to content

Commit 7e3a6f1

Browse files
committed
set required php version to >=7.1
This is the minimum php version to make unit tests work
1 parent 9a998f5 commit 7e3a6f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function emailsAreConverted($rawText, $expectedText)
8484
$this->assertSame($expectedText, $actualResult);
8585
}
8686

87-
public function emailTexts()
87+
public function emailTexts(): array
8888
{
8989
return [
9090
'just some text not to touch' => [

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "neos-plugin",
44
"description": "A email address and link obfuscation plugin for Neos CMS",
55
"require": {
6-
"php": ">=7.0",
6+
"php": ">=7.1",
77
"neos/neos": "^3.0 || ^4.0 || ^5.0 || ^7.0"
88
},
99
"autoload": {

0 commit comments

Comments
 (0)