Skip to content

Commit

Permalink
Set up autoloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer14420 committed Nov 12, 2024
1 parent e5272b4 commit ad26ff8
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"name": "spencer14420/sp-php-email-handler",
"description": "A server-side PHP handler for contact forms. Handles form submissions, validates user inputs, sends emails to a mailbox, and sends confirmation emails to users.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "spencer14420"
}
],
"minimum-stability": "dev",
"require": {}
"name": "spencer14420/sp-php-email-handler",
"description": "A server-side PHP handler for contact forms. Handles form submissions, validates user inputs, sends emails to a mailbox, and sends confirmation emails to users.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "spencer14420"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"spencer14420\\PhpEmailHandler\\": "src/"
}
}
}

0 comments on commit ad26ff8

Please sign in to comment.