From c3973332fb922a28f092f0f81a24f76ffaff6721 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Mon, 10 Aug 2026 13:34:44 -0400 Subject: [PATCH] composer init --- composer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d5413fb --- /dev/null +++ b/composer.json @@ -0,0 +1,18 @@ +{ + "name": "potter/console", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "Potter\\Console\\": "src/Potter/Console/" + } + }, + "authors": [ + { + "name": "Jay Potter", + "email": "j@ypotter.ca" + } + ], + "minimum-stability": "stable", + "require": {} +}