From 9178b76413a1db49cf46f31e9be75f877ab6567a Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Fri, 10 Jan 2025 23:15:09 -0700 Subject: [PATCH] Add composer.json and .gitignore --- .gitignore | 1 + composer.json | 14 ++++++++++++++ 2 files changed, 15 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..23eae9b --- /dev/null +++ b/composer.json @@ -0,0 +1,14 @@ +{ + "name": "jazzsequence/ccg-manager", + "description": "A WordPress plugin to manage your CCG collection", + "type": "wordpress-plugin", + "license": "GPL-2.0-or-later", + "authors": [ + { + "name": "Chris Reynolds", + "email": "chris@jazzsequence.com" + } + ], + "minimum-stability": "stable", + "require": {} +}