I know, I know, this is not how I’m supposed to do it, but I can't think of something better.

This commit is contained in:
2023-11-01 17:03:15 -04:00
commit 3b9d50d949
10 changed files with 1057 additions and 0 deletions

24
composer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "siteworx/mail-client",
"description": "api client for the siteworx professionals api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Siteworx Pro",
"email": "websites@siteworxpro.com"
}
],
"autoload": {
"psr-4": {
"Siteworx\\Mail\\": "src/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=7.0.0",
"psr/log": "^1.0",
"psr/simple-cache": "^1.0",
"guzzlehttp/guzzle": "^6.3"
}
}