From 7e3a6f18458f9326037bfd2f3ea0197e220862fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20M=C3=B6ller?= Date: Thu, 2 Sep 2021 16:01:05 +0200 Subject: [PATCH] set required php version to >=7.1 This is the minimum php version to make unit tests work --- Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php b/Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php index 0cf1540..bd9c40f 100644 --- a/Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php +++ b/Tests/Unit/Fusion/ConvertEmailLinksImplementationTest.php @@ -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' => [ diff --git a/composer.json b/composer.json index f8be42c..bb9f8cb 100644 --- a/composer.json +++ b/composer.json @@ -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": {