diff --git a/README.md b/README.md index 904cea3..fa08c26 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ -# XXX +# PhpMailerEnhanced -XXX \ No newline at end of file +An enhanced version of [PHPMailer](https://github.com/PHPMailer/PHPMailer): + +- Use UTF-8 charset by default. +- Use exceptions by default. +- Automatically embed local files ("file://" protocol or file path). +- All email addresses can now be provided with "name " format (instead of two separate arguments). diff --git a/composer.json b/composer.json index d1d1031..3addbe7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { - "name": "jrosset/xxx", - "description": "XXX", + "name": "jrosset/phpmailer-enhanced", + "description": "An enhanced version of PHPMailer", "keywords": [ ], "type": "library", @@ -15,7 +15,8 @@ "minimum-stability": "stable", "require": { - "php": "^7.4 || ^8.0" + "php": "^7.4 || ^8.0", + "phpmailer/phpmailer": "^6.8" }, "autoload": { "psr-4": { @@ -25,7 +26,7 @@ }, "readme": "README.md", - "homepage": "https://git.jrosset.ovh/jrosset/XXX", + "homepage": "https://git.jrosset.ovh/jrosset/PhpMailerEnhanced", "license": "CC-BY-4.0", "authors": [ { @@ -35,9 +36,9 @@ ], "support": { "email": "jul.rosset@gmail.com", - "issues": "https://git.jrosset.ovh/jrosset/XXX/issues", - "wiki": "https://git.jrosset.ovh/jrosset/XXX/wiki", - "docs": "https://git.jrosset.ovh/jrosset/XXX/wiki", - "source": "https://git.jrosset.ovh/jrosset/XXX" + "issues": "https://git.jrosset.ovh/jrosset/PhpMailerEnhanced/issues", + "wiki": "https://git.jrosset.ovh/jrosset/PhpMailerEnhanced/wiki", + "docs": "https://git.jrosset.ovh/jrosset/PhpMailerEnhanced/wiki", + "source": "https://git.jrosset.ovh/jrosset/PhpMailerEnhanced" } -} \ No newline at end of file +}