From f5d267ea98383756c7e9a29e72a6f5aeb516cae3 Mon Sep 17 00:00:00 2001 From: Brad Cimbura Date: Fri, 9 Feb 2024 12:41:10 -0600 Subject: [PATCH] add initial composer file --- .gitignore | 2 +- composer.json | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index f712bc5..cad3b24 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ composer.phar # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file -# composer.lock +composer.lock diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b22cd92 --- /dev/null +++ b/composer.json @@ -0,0 +1,17 @@ +{ + "name": "hpz937/bill-reminder", + "type": "project", + "license": "MIT", + "autoload": { + "psr-4": { + "Hpz937\\BillReminder\\": "src/" + } + }, + "authors": [ + { + "name": "Brad Cimbura", + "email": "hpz937+code@gmail.com" + } + ], + "require": {} +}