Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
itchief committed Aug 26, 2019
1 parent c7c6ef9 commit d8a52a6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion feedback/phpmailer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Formatting email correctly is surprisingly difficult. There are myriad overlappi
The PHP `mail()` function usually sends via a local mail server, typically fronted by a `sendmail` binary on Linux, BSD and OS X platforms, however, Windows usually doesn't include a local mail server; PHPMailer's integrated SMTP implementation allows email sending on Windows platforms without a local mail server.

## License
This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lgpl-2.1.html) license. Please read LICENSE for information on the software availability and distribution.
This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lgpl-2.1.html) license, along with the [GPL Cooperation Commitment](https://gplcc.github.io/gplcc/). Please read LICENSE for information on the software availability and distribution.

## Installation & loading
PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file:
Expand Down
2 changes: 1 addition & 1 deletion feedback/phpmailer/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.6
6.0.7
2 changes: 1 addition & 1 deletion feedback/phpmailer/language/phpmailer.lang-ms.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.';
$PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: ';
$PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: ';
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
$PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: ';
2 changes: 1 addition & 1 deletion feedback/phpmailer/src/PHPMailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ class PHPMailer
*
* @var string
*/
const VERSION = '6.0.6';
const VERSION = '6.0.7';

/**
* Error severity: message only, continue processing.
Expand Down
2 changes: 1 addition & 1 deletion feedback/phpmailer/src/POP3.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class POP3
*
* @var string
*/
const VERSION = '6.0.6';
const VERSION = '6.0.7';

/**
* Default POP3 port number.
Expand Down
2 changes: 1 addition & 1 deletion feedback/phpmailer/src/SMTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SMTP
*
* @var string
*/
const VERSION = '6.0.6';
const VERSION = '6.0.7';

/**
* SMTP line break constant.
Expand Down

0 comments on commit d8a52a6

Please sign in to comment.