From 0a6c32a6f2541d3a69029e48f028cb7b8101487f Mon Sep 17 00:00:00 2001 From: Michael Gerdemann Date: Fri, 17 Jan 2020 08:16:47 +0100 Subject: [PATCH] feat: Create package Creates the package --- composer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e602d6c --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "avency/gitea", + "description": "Gitea API", + "type": "library", + "homepage": "https://www.avency.de", + "license": ["MIT"], + "require": { + "php": "^7.2", + "guzzlehttp/guzzle": "~6.0" + }, + "autoload": { + "psr-4": { + "Avency\\Gitea\\": "Classes" + } + }, + "extra": { + "neos": { + "package-key": "Avency.Gitea" + } + } +}