add initial composer file

This commit is contained in:
2024-02-09 12:41:10 -06:00
parent 791c218e29
commit f5d267ea98
2 changed files with 18 additions and 1 deletions

2
.gitignore vendored
View File

@@ -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

17
composer.json Normal file
View File

@@ -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": {}
}