Skip to content

Commit c1b8737

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 868c6c5 commit c1b8737

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
### Changed
610

711
- Apply new CodingStandard from latest php-cs-fixer.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"iot-data"
1212
],
1313
"require": {
14-
"php": "^7.2.5 || ^8.0",
14+
"php": "^8.2",
1515
"async-aws/core": "^1.9"
1616
},
1717
"autoload": {
@@ -26,7 +26,7 @@
2626
},
2727
"extra": {
2828
"branch-alias": {
29-
"dev-master": "1.1-dev"
29+
"dev-master": "1.2-dev"
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)