Skip to content

Commit 525daa7

Browse files
authored
Drop support for PHP lower than 8.2 (#1967)
* Drop support for PHP lower than 8.2 * Remove dead code related to old PHP versions * Regenerate the Psalm baseline
1 parent 8cd402e commit 525daa7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 10
1515
matrix:
16-
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
16+
php: ['8.2', '8.3', '8.4', '8.5']
1717

1818
steps:
1919
- name: Set up PHP

CHANGELOG.md

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

33
## NOT RELEASED
44

5+
### Dependency bumped
6+
7+
- Drop support for PHP versions lower than 8.2
8+
59
## 1.1.1
610

711
### Changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"session"
1313
],
1414
"require": {
15-
"php": "^7.2.5 || ^8.0",
15+
"php": "^8.2",
1616
"async-aws/dynamo-db": "^1.0 || ^2.0 || ^3.0"
1717
},
1818
"autoload": {
@@ -27,7 +27,7 @@
2727
},
2828
"extra": {
2929
"branch-alias": {
30-
"dev-master": "1.1-dev"
30+
"dev-master": "1.2-dev"
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)