Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 29, 2024
1 parent 3e08226 commit dbfebb4
Show file tree
Hide file tree
Showing 74 changed files with 83 additions and 78 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Api/AbstractGoogle.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/AbstractHttp.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/AbstractHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/AbstractOffice365.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @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 {}
2 changes: 1 addition & 1 deletion src/Api/HttpClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/HttpInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/AbstractMailClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @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 {}
2 changes: 1 addition & 1 deletion src/Client/Google.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/HttpClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/MailClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Office365.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Pop.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @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 {}
2 changes: 1 addition & 1 deletion src/Mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/AbstractMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/AbstractPart.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @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 {}
2 changes: 1 addition & 1 deletion src/Message/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/MessageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Part.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/PartInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/AbstractTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @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 {}
2 changes: 1 addition & 1 deletion src/Transport/Google.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Mailgun.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Office365.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Sendgrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Sendmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Ses.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Smtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Smtp/AbstractSmtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Smtp/AgentInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Loading

0 comments on commit dbfebb4

Please sign in to comment.