diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 9970c55..f1c051b 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -27,6 +27,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + #- name: Validate composer.json and composer.lock # run: composer validate diff --git a/README.md b/README.md index f96f4b0..69ef4cc 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Install `pop-mail` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-mail" : "^4.0.0" + "popphp/pop-mail" : "^4.0.3" } [Top](#pop-mail) diff --git a/composer.json b/composer.json index 578c93b..5d65851 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,12 @@ } ], "require": { - "php": ">=8.1.0", - "popphp/pop-http": "^5.2.11", - "popphp/pop-mime": "^2.0.0", - "popphp/pop-utils": "^2.1.2", - "google/apiclient": "^v2.15.1", - "aws/aws-sdk-php": "^3.283.9" + "php": ">=8.2.0", + "popphp/pop-http": "^5.3.0", + "popphp/pop-mime": "^2.0.1", + "popphp/pop-utils": "^2.1.3", + "google/apiclient": "^v2.15.4", + "aws/aws-sdk-php": "^3.283.18" }, "require-dev": { "phpunit/phpunit": "^11.0.0" diff --git a/src/Api/AbstractGoogle.php b/src/Api/AbstractGoogle.php index c900a26..68e0378 100644 --- a/src/Api/AbstractGoogle.php +++ b/src/Api/AbstractGoogle.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractGoogle extends AbstractHttpClient { diff --git a/src/Api/AbstractHttp.php b/src/Api/AbstractHttp.php index f831f2d..0616f34 100644 --- a/src/Api/AbstractHttp.php +++ b/src/Api/AbstractHttp.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractHttp implements HttpInterface { diff --git a/src/Api/AbstractHttpClient.php b/src/Api/AbstractHttpClient.php index d211160..8cd2191 100644 --- a/src/Api/AbstractHttpClient.php +++ b/src/Api/AbstractHttpClient.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractHttpClient extends AbstractHttp implements HttpClientInterface { diff --git a/src/Api/AbstractOffice365.php b/src/Api/AbstractOffice365.php index 695f395..9122c55 100644 --- a/src/Api/AbstractOffice365.php +++ b/src/Api/AbstractOffice365.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractOffice365 extends AbstractHttpClient { diff --git a/src/Api/Exception.php b/src/Api/Exception.php index de53b90..2fcd930 100644 --- a/src/Api/Exception.php +++ b/src/Api/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Api/HttpClientInterface.php b/src/Api/HttpClientInterface.php index 1b60831..2c9c3b6 100644 --- a/src/Api/HttpClientInterface.php +++ b/src/Api/HttpClientInterface.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface HttpClientInterface { diff --git a/src/Api/HttpInterface.php b/src/Api/HttpInterface.php index d7012b7..b94baf5 100644 --- a/src/Api/HttpInterface.php +++ b/src/Api/HttpInterface.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface HttpInterface { diff --git a/src/Client/AbstractMailClient.php b/src/Client/AbstractMailClient.php index dcfa34a..3037f7a 100644 --- a/src/Client/AbstractMailClient.php +++ b/src/Client/AbstractMailClient.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractMailClient implements MailClientInterface { diff --git a/src/Client/Exception.php b/src/Client/Exception.php index 42e9f2a..9d54790 100644 --- a/src/Client/Exception.php +++ b/src/Client/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Client/Google.php b/src/Client/Google.php index 1f7302b..e85de2a 100644 --- a/src/Client/Google.php +++ b/src/Client/Google.php @@ -25,7 +25,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Google extends AbstractGoogle implements HttpClientInterface { diff --git a/src/Client/HttpClientInterface.php b/src/Client/HttpClientInterface.php index 720d2c2..aa75204 100644 --- a/src/Client/HttpClientInterface.php +++ b/src/Client/HttpClientInterface.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface HttpClientInterface { diff --git a/src/Client/Imap.php b/src/Client/Imap.php index 3caf98f..69c88a7 100644 --- a/src/Client/Imap.php +++ b/src/Client/Imap.php @@ -25,7 +25,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Imap extends AbstractMailClient { diff --git a/src/Client/MailClientInterface.php b/src/Client/MailClientInterface.php index 4cb147c..452559b 100644 --- a/src/Client/MailClientInterface.php +++ b/src/Client/MailClientInterface.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface MailClientInterface { diff --git a/src/Client/Office365.php b/src/Client/Office365.php index 149e674..130e52c 100644 --- a/src/Client/Office365.php +++ b/src/Client/Office365.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Office365 extends AbstractOffice365 implements HttpClientInterface { diff --git a/src/Client/Pop.php b/src/Client/Pop.php index cd1f2c3..2355a79 100644 --- a/src/Client/Pop.php +++ b/src/Client/Pop.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Pop extends Imap { diff --git a/src/Exception.php b/src/Exception.php index 88adca0..4528ff7 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Mailer.php b/src/Mailer.php index d56fa23..31abf14 100644 --- a/src/Mailer.php +++ b/src/Mailer.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Mailer { diff --git a/src/Message.php b/src/Message.php index 1ae7943..7b55fc3 100644 --- a/src/Message.php +++ b/src/Message.php @@ -31,7 +31,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Message extends AbstractMessage { diff --git a/src/Message/AbstractMessage.php b/src/Message/AbstractMessage.php index 6279046..bb84009 100644 --- a/src/Message/AbstractMessage.php +++ b/src/Message/AbstractMessage.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractMessage implements MessageInterface { diff --git a/src/Message/AbstractPart.php b/src/Message/AbstractPart.php index a1213c1..902f028 100644 --- a/src/Message/AbstractPart.php +++ b/src/Message/AbstractPart.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractPart extends AbstractMessage implements PartInterface { diff --git a/src/Message/Attachment.php b/src/Message/Attachment.php index a43a4df..05270af 100644 --- a/src/Message/Attachment.php +++ b/src/Message/Attachment.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Attachment extends AbstractPart { diff --git a/src/Message/Exception.php b/src/Message/Exception.php index eac9653..cf99461 100644 --- a/src/Message/Exception.php +++ b/src/Message/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Message/Html.php b/src/Message/Html.php index bcfc14f..b61c77a 100644 --- a/src/Message/Html.php +++ b/src/Message/Html.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Html extends AbstractPart { diff --git a/src/Message/MessageInterface.php b/src/Message/MessageInterface.php index 4fdba87..9726a8e 100644 --- a/src/Message/MessageInterface.php +++ b/src/Message/MessageInterface.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface MessageInterface { diff --git a/src/Message/Part.php b/src/Message/Part.php index a5a403f..101e651 100644 --- a/src/Message/Part.php +++ b/src/Message/Part.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Part extends Utils\ArrayObject { diff --git a/src/Message/PartInterface.php b/src/Message/PartInterface.php index 22d8307..13c8b34 100644 --- a/src/Message/PartInterface.php +++ b/src/Message/PartInterface.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface PartInterface { diff --git a/src/Message/Simple.php b/src/Message/Simple.php index 5d1f63d..4b7d6fa 100644 --- a/src/Message/Simple.php +++ b/src/Message/Simple.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Simple extends AbstractPart { diff --git a/src/Message/Text.php b/src/Message/Text.php index 75f3f74..c0d5671 100644 --- a/src/Message/Text.php +++ b/src/Message/Text.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Text extends AbstractPart { diff --git a/src/Queue.php b/src/Queue.php index ed24d39..b8d4e92 100644 --- a/src/Queue.php +++ b/src/Queue.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Queue { diff --git a/src/Transport/AbstractTransport.php b/src/Transport/AbstractTransport.php index d11c496..154cc39 100644 --- a/src/Transport/AbstractTransport.php +++ b/src/Transport/AbstractTransport.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractTransport implements TransportInterface { diff --git a/src/Transport/Exception.php b/src/Transport/Exception.php index 079b433..6a80c1a 100644 --- a/src/Transport/Exception.php +++ b/src/Transport/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Google.php b/src/Transport/Google.php index f185f1f..73b0113 100644 --- a/src/Transport/Google.php +++ b/src/Transport/Google.php @@ -26,7 +26,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Google extends AbstractGoogle implements TransportInterface { diff --git a/src/Transport/Mailgun.php b/src/Transport/Mailgun.php index aec9589..532099a 100644 --- a/src/Transport/Mailgun.php +++ b/src/Transport/Mailgun.php @@ -25,7 +25,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Mailgun extends AbstractHttp implements TransportInterface { diff --git a/src/Transport/Office365.php b/src/Transport/Office365.php index abe66b1..5c49f6e 100644 --- a/src/Transport/Office365.php +++ b/src/Transport/Office365.php @@ -28,7 +28,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Office365 extends AbstractOffice365 implements TransportInterface { diff --git a/src/Transport/Sendgrid.php b/src/Transport/Sendgrid.php index ae8e780..595583c 100644 --- a/src/Transport/Sendgrid.php +++ b/src/Transport/Sendgrid.php @@ -29,7 +29,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Sendgrid extends AbstractHttp implements TransportInterface { diff --git a/src/Transport/Sendmail.php b/src/Transport/Sendmail.php index 04e3e65..39bf2b6 100644 --- a/src/Transport/Sendmail.php +++ b/src/Transport/Sendmail.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Sendmail extends AbstractTransport { diff --git a/src/Transport/Ses.php b/src/Transport/Ses.php index 5c8f6f8..8dde9ae 100644 --- a/src/Transport/Ses.php +++ b/src/Transport/Ses.php @@ -29,7 +29,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Ses extends AbstractHttp implements TransportInterface { diff --git a/src/Transport/Smtp.php b/src/Transport/Smtp.php index 31c0fd7..cf0efa3 100644 --- a/src/Transport/Smtp.php +++ b/src/Transport/Smtp.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Smtp extends Smtp\EsmtpTransport implements TransportInterface { diff --git a/src/Transport/Smtp/AbstractSmtp.php b/src/Transport/Smtp/AbstractSmtp.php index 569b1ca..06d132d 100644 --- a/src/Transport/Smtp/AbstractSmtp.php +++ b/src/Transport/Smtp/AbstractSmtp.php @@ -23,7 +23,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractSmtp implements SmtpInterface, TransportInterface { diff --git a/src/Transport/Smtp/AgentInterface.php b/src/Transport/Smtp/AgentInterface.php index 47fcfbe..d38958e 100644 --- a/src/Transport/Smtp/AgentInterface.php +++ b/src/Transport/Smtp/AgentInterface.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface AgentInterface { diff --git a/src/Transport/Smtp/Auth/AuthInterface.php b/src/Transport/Smtp/Auth/AuthInterface.php index 35adac8..0c62887 100644 --- a/src/Transport/Smtp/Auth/AuthInterface.php +++ b/src/Transport/Smtp/Auth/AuthInterface.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface AuthInterface { diff --git a/src/Transport/Smtp/Auth/CramMd5Authenticator.php b/src/Transport/Smtp/Auth/CramMd5Authenticator.php index 1452a8c..617bf2a 100644 --- a/src/Transport/Smtp/Auth/CramMd5Authenticator.php +++ b/src/Transport/Smtp/Auth/CramMd5Authenticator.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class CramMd5Authenticator implements AuthInterface { diff --git a/src/Transport/Smtp/Auth/Exception.php b/src/Transport/Smtp/Auth/Exception.php index 7176211..1505081 100644 --- a/src/Transport/Smtp/Auth/Exception.php +++ b/src/Transport/Smtp/Auth/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Smtp/Auth/LoginAuthenticator.php b/src/Transport/Smtp/Auth/LoginAuthenticator.php index fb00b01..8607122 100644 --- a/src/Transport/Smtp/Auth/LoginAuthenticator.php +++ b/src/Transport/Smtp/Auth/LoginAuthenticator.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class LoginAuthenticator implements AuthInterface { diff --git a/src/Transport/Smtp/Auth/NTLMAuthenticator.php b/src/Transport/Smtp/Auth/NTLMAuthenticator.php index 0d1867e..5d8eba9 100644 --- a/src/Transport/Smtp/Auth/NTLMAuthenticator.php +++ b/src/Transport/Smtp/Auth/NTLMAuthenticator.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Ward Peeters & Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class NTLMAuthenticator implements AuthInterface { diff --git a/src/Transport/Smtp/Auth/PlainAuthenticator.php b/src/Transport/Smtp/Auth/PlainAuthenticator.php index 321fa8a..362267b 100644 --- a/src/Transport/Smtp/Auth/PlainAuthenticator.php +++ b/src/Transport/Smtp/Auth/PlainAuthenticator.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class PlainAuthenticator implements AuthInterface { diff --git a/src/Transport/Smtp/Auth/XOAuth2Authenticator.php b/src/Transport/Smtp/Auth/XOAuth2Authenticator.php index 2267711..ab776dc 100644 --- a/src/Transport/Smtp/Auth/XOAuth2Authenticator.php +++ b/src/Transport/Smtp/Auth/XOAuth2Authenticator.php @@ -22,7 +22,7 @@ * @package Pop\Mail * @author xu.li & Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer * @see https://developers.google.com/google-apps/gmail/xoauth2_protocol - * @version 4.0.0 + * @version 4.0.3 */ class XOAuth2Authenticator implements AuthInterface { diff --git a/src/Transport/Smtp/AuthHandler.php b/src/Transport/Smtp/AuthHandler.php index 8c754ae..b4bc14e 100644 --- a/src/Transport/Smtp/AuthHandler.php +++ b/src/Transport/Smtp/AuthHandler.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class AuthHandler implements HandlerInterface { diff --git a/src/Transport/Smtp/EsmtpTransport.php b/src/Transport/Smtp/EsmtpTransport.php index 5def91e..3f41dba 100644 --- a/src/Transport/Smtp/EsmtpTransport.php +++ b/src/Transport/Smtp/EsmtpTransport.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class EsmtpTransport extends AbstractSmtp implements AgentInterface { diff --git a/src/Transport/Smtp/Exception.php b/src/Transport/Smtp/Exception.php index b538dab..114db79 100644 --- a/src/Transport/Smtp/Exception.php +++ b/src/Transport/Smtp/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Smtp/HandlerInterface.php b/src/Transport/Smtp/HandlerInterface.php index 01c03a8..05d06f4 100644 --- a/src/Transport/Smtp/HandlerInterface.php +++ b/src/Transport/Smtp/HandlerInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface HandlerInterface { diff --git a/src/Transport/Smtp/SmtpInterface.php b/src/Transport/Smtp/SmtpInterface.php index 82915cf..a9abff6 100644 --- a/src/Transport/Smtp/SmtpInterface.php +++ b/src/Transport/Smtp/SmtpInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface SmtpInterface { diff --git a/src/Transport/Smtp/Stream/Buffer.php b/src/Transport/Smtp/Stream/Buffer.php index 6d446e7..46db2a8 100644 --- a/src/Transport/Smtp/Stream/Buffer.php +++ b/src/Transport/Smtp/Stream/Buffer.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class Buffer extends Byte\AbstractFilterableInputStream implements BufferInterface { diff --git a/src/Transport/Smtp/Stream/BufferInterface.php b/src/Transport/Smtp/Stream/BufferInterface.php index 0325cdc..1fb6ebf 100644 --- a/src/Transport/Smtp/Stream/BufferInterface.php +++ b/src/Transport/Smtp/Stream/BufferInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface BufferInterface { diff --git a/src/Transport/Smtp/Stream/Byte/AbstractFilterableInputStream.php b/src/Transport/Smtp/Stream/Byte/AbstractFilterableInputStream.php index 2b87084..e26d689 100644 --- a/src/Transport/Smtp/Stream/Byte/AbstractFilterableInputStream.php +++ b/src/Transport/Smtp/Stream/Byte/AbstractFilterableInputStream.php @@ -22,7 +22,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ abstract class AbstractFilterableInputStream implements InputInterface, FilterableInterface { diff --git a/src/Transport/Smtp/Stream/Byte/ArrayByteStream.php b/src/Transport/Smtp/Stream/Byte/ArrayByteStream.php index 1eb4bb6..570fe2c 100644 --- a/src/Transport/Smtp/Stream/Byte/ArrayByteStream.php +++ b/src/Transport/Smtp/Stream/Byte/ArrayByteStream.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class ArrayByteStream implements InputInterface, OutputInterface { diff --git a/src/Transport/Smtp/Stream/Byte/Exception.php b/src/Transport/Smtp/Stream/Byte/Exception.php index d90a0bb..0a03c02 100644 --- a/src/Transport/Smtp/Stream/Byte/Exception.php +++ b/src/Transport/Smtp/Stream/Byte/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Smtp/Stream/Byte/FileByteStream.php b/src/Transport/Smtp/Stream/Byte/FileByteStream.php index b803988..ed1ae97 100644 --- a/src/Transport/Smtp/Stream/Byte/FileByteStream.php +++ b/src/Transport/Smtp/Stream/Byte/FileByteStream.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class FileByteStream extends AbstractFilterableInputStream implements FileInterface { diff --git a/src/Transport/Smtp/Stream/Byte/InputInterface.php b/src/Transport/Smtp/Stream/Byte/InputInterface.php index 5f7f9fa..0ced7ba 100644 --- a/src/Transport/Smtp/Stream/Byte/InputInterface.php +++ b/src/Transport/Smtp/Stream/Byte/InputInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface InputInterface { diff --git a/src/Transport/Smtp/Stream/Byte/OutputInterface.php b/src/Transport/Smtp/Stream/Byte/OutputInterface.php index 6061a2d..737052c 100644 --- a/src/Transport/Smtp/Stream/Byte/OutputInterface.php +++ b/src/Transport/Smtp/Stream/Byte/OutputInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface OutputInterface { diff --git a/src/Transport/Smtp/Stream/Byte/TemporaryFileByteStream.php b/src/Transport/Smtp/Stream/Byte/TemporaryFileByteStream.php index ea77c24..e6a8717 100644 --- a/src/Transport/Smtp/Stream/Byte/TemporaryFileByteStream.php +++ b/src/Transport/Smtp/Stream/Byte/TemporaryFileByteStream.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Romain-Geissler from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class TemporaryFileByteStream extends FileByteStream { diff --git a/src/Transport/Smtp/Stream/Exception.php b/src/Transport/Smtp/Stream/Exception.php index 301a3cc..48c4126 100644 --- a/src/Transport/Smtp/Stream/Exception.php +++ b/src/Transport/Smtp/Stream/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Smtp/Stream/FileInterface.php b/src/Transport/Smtp/Stream/FileInterface.php index e6139a3..f82cdd4 100644 --- a/src/Transport/Smtp/Stream/FileInterface.php +++ b/src/Transport/Smtp/Stream/FileInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface FileInterface { diff --git a/src/Transport/Smtp/Stream/Filter/ByteArrayReplacement.php b/src/Transport/Smtp/Stream/Filter/ByteArrayReplacement.php index ae9f2ce..9f9474e 100644 --- a/src/Transport/Smtp/Stream/Filter/ByteArrayReplacement.php +++ b/src/Transport/Smtp/Stream/Filter/ByteArrayReplacement.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class ByteArrayReplacement implements FilterInterface { diff --git a/src/Transport/Smtp/Stream/Filter/Exception.php b/src/Transport/Smtp/Stream/Filter/Exception.php index 6909779..29eb6dd 100644 --- a/src/Transport/Smtp/Stream/Filter/Exception.php +++ b/src/Transport/Smtp/Stream/Filter/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ class Exception extends \Exception {} diff --git a/src/Transport/Smtp/Stream/Filter/FilterableInterface.php b/src/Transport/Smtp/Stream/Filter/FilterableInterface.php index c4349eb..fbddf36 100644 --- a/src/Transport/Smtp/Stream/Filter/FilterableInterface.php +++ b/src/Transport/Smtp/Stream/Filter/FilterableInterface.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface FilterableInterface { diff --git a/src/Transport/Smtp/Stream/Filter/ReplacementFactoryInterface.php b/src/Transport/Smtp/Stream/Filter/ReplacementFactoryInterface.php index 046c391..78a6049 100644 --- a/src/Transport/Smtp/Stream/Filter/ReplacementFactoryInterface.php +++ b/src/Transport/Smtp/Stream/Filter/ReplacementFactoryInterface.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface ReplacementFactoryInterface { diff --git a/src/Transport/Smtp/Stream/Filter/StringReplacement.php b/src/Transport/Smtp/Stream/Filter/StringReplacement.php index 470c4e3..3c8a281 100644 --- a/src/Transport/Smtp/Stream/Filter/StringReplacement.php +++ b/src/Transport/Smtp/Stream/Filter/StringReplacement.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class StringReplacement implements FilterInterface { diff --git a/src/Transport/Smtp/Stream/Filter/StringReplacementFactory.php b/src/Transport/Smtp/Stream/Filter/StringReplacementFactory.php index 606a2b8..a1d03ec 100644 --- a/src/Transport/Smtp/Stream/Filter/StringReplacementFactory.php +++ b/src/Transport/Smtp/Stream/Filter/StringReplacementFactory.php @@ -21,7 +21,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ class StringReplacementFactory implements ReplacementFactoryInterface { diff --git a/src/Transport/Smtp/Stream/FilterInterface.php b/src/Transport/Smtp/Stream/FilterInterface.php index 331d3ee..d552ab8 100644 --- a/src/Transport/Smtp/Stream/FilterInterface.php +++ b/src/Transport/Smtp/Stream/FilterInterface.php @@ -19,7 +19,7 @@ * @category Pop * @package Pop\Mail * @author Chris Corbyn, from the SwiftMailer library https://github.com/swiftmailer/swiftmailer - * @version 4.0.0 + * @version 4.0.3 */ interface FilterInterface { diff --git a/src/Transport/TransportInterface.php b/src/Transport/TransportInterface.php index 049b937..79e3978 100644 --- a/src/Transport/TransportInterface.php +++ b/src/Transport/TransportInterface.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.0.0 + * @version 4.0.3 */ interface TransportInterface {