From 55b6b82c5cacff5089aee42d975ea22bc786e9ad Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Fri, 11 Oct 2024 14:38:39 +0200 Subject: [PATCH] update structure of composer.json and update dependencies --- composer.json | 56 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index bc7a063..051ba63 100644 --- a/composer.json +++ b/composer.json @@ -2,10 +2,33 @@ "name": "digicomp/flow-translation-endpoint", "description": "A simple endpoint providing XLIFF translations as string", "type": "neos-package", + "keywords": [ + "Neos", + "Flow", + "translation", + "xliff", + "json" + ], + "homepage": "https://git.digital-competence.de/Packages/DigiComp.FlowTranslationEndpoint", + "license": "MIT", + "authors": [ + { + "name": "Ferdinand Kuhl", + "email": "f.kuhl@digital-competence.de", + "homepage": "https://www.digital-competence.de", + "role": "Developer" + } + ], "require": { + "php": ">=7.4.0", "ext-json": "*", - "neos/flow": "^6.3.0 | ^7.0 | ^8.0", - "php": ">=7.4" + "neos/flow": "^6.3.0 || ^7.0 || ^8.0" + }, + "require-dev": { + "mikey179/vfsstream": "^1.6.1", + "neos/buildessentials": "^7.0.0", + "phpunit/phpunit": "~8.5", + "vimeo/psalm": "~4.22.0" }, "autoload": { "psr-4": { @@ -17,29 +40,16 @@ "DigiComp\\FlowTranslationEndpoint\\Tests\\": "Tests/" } }, + "config": { + "sort-packages": true, + "platform-check": true + }, "extra": { - "neos": { - "package-key": "DigiComp.FlowTranslationEndpoint" - }, "branch-alias": { "dev-develop": "1.0.x-dev" + }, + "neos": { + "package-key": "DigiComp.FlowTranslationEndpoint" } - }, - "authors": [ - { - "name": "Ferdinand Kuhl", - "email": "f.kuhl@digital-competence.de", - "homepage": "https://www.digital-competence.de", - "role": "Developer" - } - ], - "license": "MIT", - "homepage": "https://git.digital-competence.de/Packages/DigiComp.FlowTranslationEndpoint", - "keywords": [ - "Neos", - "Flow", - "translation", - "xliff", - "json" - ] + } }