Skip to content

Commit a198a24

Browse files
author
Gareth Ellis
committed
Drops support for PHP <8.1, adds support for 8.2 & 8.3
1 parent 0bd58bf commit a198a24

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Composer install
1313
run: composer install --prefer-dist
1414

15-
- name: Run PHPUnit (7.4)
16-
run: php7.4 vendor/bin/phpunit
17-
18-
- name: Run PHPUnit (8.0)
19-
run: php8.0 vendor/bin/phpunit
20-
2115
- name: Run PHPUnit (8.1)
2216
run: php8.1 vendor/bin/phpunit
17+
18+
- name: Run PHPUnit (8.2)
19+
run: php8.2 vendor/bin/phpunit
20+
21+
- name: Run PHPUnit (8.3)
22+
run: php8.3 vendor/bin/phpunit

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## [1.2.0] - 2024-06-21
4+
* Support for PHP versions below `8.1` has been dropped.
5+
* PHP `8.1`, `8.2`, and `8.3` are now supported and tested.
6+
37
## [1.1.0] - 2021-02-26
48
* Updates `beberlei/assert` version
59

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "7.3.* | 7.4.* | 8.0.* | 8.1.*",
19+
"php": "8.1.* | 8.2.* | 8.3.*",
2020
"ext-intl": "*",
2121
"beberlei/assert": "^3.3"
2222
},

0 commit comments

Comments
 (0)