Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/php_code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-24.04']
php-versions: ['8.1']
php-versions: ['8.5']

steps:
- name: Setup PHP
Expand Down
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-24.04']
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['8.2', '8.3', '8.4', '8.5']

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-24.04']
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['8.2', '8.3', '8.4', '8.5']

steps:
- name: Setup PHP
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@ Initially released in December 2012, the PHP IMAP Mailbox is a powerful and open
| 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 |
| 7.4 | >3.0.33, 4.x, 5.x | End of life |
| 8.0 | >3.0.33, 4.x, 5.x | End of life |
| 8.1 | >4.3.0, 5.x | End of life |
| 8.2 | 6.x | Active support |
| 8.3 | 6.x | Active support |
| 8.4 | 6.x | Active support |
| 8.5 | 6.x | Active support |

The next major release raises the minimum supported PHP version to PHP 8.2 and is tested on PHP 8.2 through PHP 8.5.

* 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.4 || ^8.0",
"php": "^8.2",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-imap": "*",
Expand Down
Loading