From 5110d1db3e030d4f7960e18bf3e9db8cb5a2fa3a Mon Sep 17 00:00:00 2001 From: Artur Weigandt Date: Sat, 14 May 2022 23:38:16 +0200 Subject: Update to PHPMailer 6.6.0 with composer (#4329) * Install PHPMailer 6.5.1 with composer * Fix folder name for phpmailer * Update PHPMailer to v6.6.0, add LICENSE and README.md * remove composer and autoload.php after install/update * Fix path to PHPMailer for PHPStan * Remove lib/composer.lock, lock PHPMailer at version 6.6.0 * Improve PSR-4 autoloading for PHPMailer * Markdownlint ignore * Delete some obvious comments * ignores * Support composer update --no-autoloader * Automatic cleaning With rules based on https://github.com/PHPMailer/PHPMailer/blob/master/README.md#minimal-installation * Readme gitignore hint Co-authored-by: Alexandre Alapetite --- lib/composer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/composer.json (limited to 'lib/composer.json') diff --git a/lib/composer.json b/lib/composer.json new file mode 100644 index 000000000..3d307f6e8 --- /dev/null +++ b/lib/composer.json @@ -0,0 +1,17 @@ +{ + "name": "freshrss.org/freshrss", + "description": "A free, self-hostable aggregator", + "type": "project", + "homepage": "https://freshrss.org/", + "license": "AGPL-3.0", + "require": { + "php": ">=7.0.0", + "phpmailer/phpmailer": "6.6.0" + }, + "config": { + "vendor-dir": "./" + }, + "scripts": { + "post-update-cmd": "git clean -d -f -X ." + } +} -- cgit v1.2.3