From 44f49c6f84ac278ccf0694972ba72b216ca7697b Mon Sep 17 00:00:00 2001 From: Anselm Hannemann Date: Fri, 10 Sep 2021 07:34:43 +0200 Subject: [PATCH] Add composer package setup. --- .gitignore | 1 + composer.json | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57872d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3682b16 --- /dev/null +++ b/composer.json @@ -0,0 +1,12 @@ +{ + "name": "mzur/kirby-calendar-plugin", + "description": "A plugin for the Kirby CMS to easily implement an event calendar.", + "type": "composer-plugin", + "license": "GNU GPL v2", + "autoload": { + "psr-4": { + "Mzur\\KirbyCalendarPlugin\\": "src/" + } + }, + "require": {} +}