Skip to content

Commit 583f7f6

Browse files
committed
Remove support for PHP8.1
1 parent 6582ace commit 583f7f6

4 files changed

Lines changed: 21 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
php: ['8.1', '8.2', '8.3', '8.4']
13+
php: ['8.2', '8.3', '8.4', '8.5']
1414
stability: [prefer-lowest, prefer-stable]
15-
include:
16-
- php: '8.5'
17-
flags: "--ignore-platform-req=php"
18-
stability: prefer-stable
1915
steps:
2016
- name: Checkout code
2117
uses: actions/checkout@v4
@@ -49,11 +45,6 @@ jobs:
4945

5046
- name: Run Unit tests with coverage
5147
run: composer phpunit -- ${{ matrix.phpunit-flags }}
52-
if: ${{ matrix.php != '8.5' }}
53-
54-
- name: Run Unit tests without coverage
55-
run: vendor/bin/phpunit --no-coverage
56-
if: ${{ matrix.php == '8.5' }}
5748

5849
- name: Run static analysis
5950
run: composer phpstan-build

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All Notable changes to `Csv` will be documented in this file
44

5+
## [Next](https://github.com/thephpleague/csv/compare/9.28.0..master) - TBD
6+
7+
### Added
8+
9+
- None
10+
11+
### Deprecated
12+
13+
- None
14+
15+
### Fixed
16+
17+
- None
18+
19+
### Remove
20+
21+
- Support for PHP8.1
22+
523
## [9.28.0](https://github.com/thephpleague/csv/compare/9.27.1...9.28.0) - 2025-12-27
624

725
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
],
2828
"require": {
29-
"php": "^8.1.2",
29+
"php": "^8.2.0",
3030
"ext-filter": "*"
3131
},
3232
"require-dev": {

docs/_data/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Working with CSV can often be much more difficult than you expect,
55
google_analytics_tracking_id: UA-46050814-6
66
# Github repository
77
repository: 'csv'
8-
version: 9.27.0
8+
version: 9.28.0
99
releases:
1010
# next:
1111
# version: '10.0'

0 commit comments

Comments
 (0)