Skip to content

Commit

Permalink
Issue #593: Drop support for EoL PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Krätzig committed Mar 12, 2022
1 parent e5923ac commit 09c432c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php_static_analysis.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"sort-packages": true
},
"require": {
"php": "^7.2 || ^8.0",
"php": ">= 8.0",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-imap": "*",
Expand Down

0 comments on commit 09c432c

Please sign in to comment.