-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #493 from barbushin/develop
- Dropped PHP 5.6 support, as it went end-of-life (EOL) on the 31st of December, 2018: https://www.php.net/eol.php - Dropped PHP 7.0 support, as it went end-of-life (EOL) on the 10th of January, 2019: https://www.php.net/eol.php - Dropped PHP 7.1 support, as it went end-of-life (EOL) on the 1st of December, 2019: https://www.php.net/eol.php - #403, #447, #479: Improved MIME decoding - #485: Fixed ENCBASE64 decoding - Fixed all Travis CI issues - Updated psalm baseline - Satisfied php-cs-fixer - Added phpcpd to detect duplicated code - Added phpmnd to detect magic numbers - PHPUnit: Added and improved / updated test cases - PR #485: Added some test cases for base64 decoding - Fully replaced `Mailbox::convertStringEncoding()` with `Mailbox::decodeMimeStr()` - Improved `composer.json` - Updated README with PHP version overview - Updated requirements in README - Updated badges in README - Removed not yet working OAuth code - This and all upcoming releases contain a Travis CI LIVE mailbox test
- Loading branch information
Showing
24 changed files
with
644 additions
and
1,519 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,10 @@ | |
* | ||
* @author Sebastian Krätzig <[email protected]> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
require_once __DIR__.'/../vendor/autoload.php'; | ||
|
||
use PhpImap\Exceptions\ConnectionException; | ||
use PhpImap\Mailbox; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,10 @@ | |
* | ||
* @author Sebastian Krätzig <[email protected]> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
require_once __DIR__.'/../vendor/autoload.php'; | ||
|
||
use PhpImap\Exceptions\ConnectionException; | ||
use PhpImap\Mailbox; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,10 @@ | |
* | ||
* @author Sebastian Krätzig <[email protected]> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
require_once __DIR__.'/../vendor/autoload.php'; | ||
|
||
use PhpImap\Exceptions\ConnectionException; | ||
use PhpImap\Mailbox; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,10 @@ | |
* | ||
* @author Sebastian Krätzig <[email protected]> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
require_once __DIR__.'/../vendor/autoload.php'; | ||
|
||
use PhpImap\Exceptions\ConnectionException; | ||
use PhpImap\Mailbox; | ||
|
||
|
Oops, something went wrong.