From 8e0d1dcd7f63dd054357dfa7f8aa8ab66cbe46bc Mon Sep 17 00:00:00 2001 From: Bastian Waidelich Date: Tue, 8 Aug 2023 20:16:45 +0200 Subject: [PATCH] BUGFIX: Require PHP 8.1+ and add author and funding details to `composer.json` --- composer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/composer.json b/composer.json index cf99f44..44cc0d4 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,24 @@ "type": "neos-package", "name": "wwwision/graphql", "license": "MIT", + "authors": [ + { + "name": "bwaidelich", + "email": "b.waidelich@wwwision.de" + } + ], + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/bwaidelich" + }, + { + "type": "paypal", + "url": "https://www.paypal.me/bwaidelich" + } + ], "require": { + "php": ">=8.1", "neos/flow": "^7.3 || ^8.0", "wwwision/types-graphql": "^1.0", "webonyx/graphql-php": "^15",