Skip to content

Commit

Permalink
Merge pull request #667 from barbushin/Issue-593-Drop-EoL-PHP-versions
Browse files Browse the repository at this point in the history
Drop support for EoL PHP versions
  • Loading branch information
Sebbo94BY committed Mar 12, 2022
2 parents d4f62bf + 1b9c507 commit 13bdfa9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php_code_coverage.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-20.04']
php-versions: ['8.0']
php-versions: ['8.1']

steps:
- name: Setup PHP
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php_static_analysis.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-20.04']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1']

steps:
- name: Setup PHP
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php_unit_tests.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-20.04']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1']

steps:
- name: Setup PHP
Expand Down
20 changes: 10 additions & 10 deletions README.md
Expand Up @@ -26,16 +26,16 @@ Initially released in December 2012, the PHP IMAP Mailbox is a powerful and open

### Requirements

| PHP Version | php-imap Version |
| ------------- | ------------- |
| 5.6 | 3.x |
| 7.0 | 3.x |
| 7.1 | 3.x |
| 7.2 | 3.x, 4.x |
| 7.3 | 3.x, 4.x |
| 7.4 | >3.0.33, 4.x |
| 8.0 | >3.0.33, 4.x |
| 8.1 | >4.3.0 |
| PHP Version | php-imap Version | php-imap status |
| ------------- | ------------- | ------------- |
| 5.6 | 3.x | End of life |
| 7.0 | 3.x | End of life |
| 7.1 | 3.x | End of life |
| 7.2 | 3.x, 4.x | End of life |
| 7.3 | 3.x, 4.x | End of life |
| 7.4 | >3.0.33, 4.x, 5.x | Active support |
| 8.0 | >3.0.33, 4.x, 5.x | Active support |
| 8.1 | >4.3.0, 5.x | Active support |

* PHP `fileinfo` extension must be present; so make sure this line is active in your php.ini: `extension=php_fileinfo.dll`
* PHP `iconv` extension must be present; so make sure this line is active in your php.ini: `extension=php_iconv.dll`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -23,7 +23,7 @@
"sort-packages": true
},
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.4 || ^8.0",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-imap": "*",
Expand Down

0 comments on commit 13bdfa9

Please sign in to comment.