Skip to content

Commit

Permalink
set required php version to >=7.1
Browse files Browse the repository at this point in the history
This is the minimum php version to make unit tests work
  • Loading branch information
ger4003 committed Sep 2, 2021
1 parent 9a998f5 commit 7e3a6f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function emailsAreConverted($rawText, $expectedText)
$this->assertSame($expectedText, $actualResult);
}

public function emailTexts()
public function emailTexts(): array
{
return [
'just some text not to touch' => [
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "neos-plugin",
"description": "A email address and link obfuscation plugin for Neos CMS",
"require": {
"php": ">=7.0",
"php": ">=7.1",
"neos/neos": "^3.0 || ^4.0 || ^5.0 || ^7.0"
},
"autoload": {
Expand Down

0 comments on commit 7e3a6f1

Please sign in to comment.