commit 0a6c32a6f2541d3a69029e48f028cb7b8101487f Author: Michael Gerdemann Date: Fri Jan 17 08:16:47 2020 +0100 feat: Create package Creates the package 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" + } + } +}