From 14edb07e0e3d14e47cc69af476bba4f1fc873ba4 Mon Sep 17 00:00:00 2001 From: Michael Danielczok <michael@pcsg.de> Date: Thu, 28 Oct 2021 06:27:07 +0000 Subject: [PATCH] refactor: add composer.json --- composer.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e586eba --- /dev/null +++ b/composer.json @@ -0,0 +1,32 @@ +{ + "name": "quiqqer\/interview", + "type": "quiqqer-plugin", + "description": "Extension for blog and news plugin. This plugin adds some new attributes and provides new bricks.", + "license": "GPL-3.0+", + "authors": [ + { + "name": "Michael Danielczok", + "email": "michael@pcsg.de", + "homepage": "http:\/\/www.pcsg.de", + "role": "Developer" + }, + { + "name": "Dominik Chrzanowski", + "email": "dominik.chrzanowski@gmail.com", + "role": "Developer" + } + ], + "support": { + "email": "support@pcsg.de" + }, + "require": { + "quiqqer\/quiqqer": ">=1.6|dev-master|dev-dev", + "quiqqer\/blog": ">=1|dev-master|dev-dev", + "quiqqer\/news": ">=1|dev-master|dev-dev" + }, + "autoload": { + "psr-4": { + "QUI\\Interview\\": "src\/QUI\/Interview" + } + } +} -- GitLab