Skip to content

Commit

Permalink
Drops support for PHP <8.1, adds support for 8.2 & 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Ellis committed Jun 21, 2024
1 parent 0bd58bf commit a198a24
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- name: Composer install
run: composer install --prefer-dist

- name: Run PHPUnit (7.4)
run: php7.4 vendor/bin/phpunit

- name: Run PHPUnit (8.0)
run: php8.0 vendor/bin/phpunit

- name: Run PHPUnit (8.1)
run: php8.1 vendor/bin/phpunit

- name: Run PHPUnit (8.2)
run: php8.2 vendor/bin/phpunit

- name: Run PHPUnit (8.3)
run: php8.3 vendor/bin/phpunit
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## [1.2.0] - 2024-06-21
* Support for PHP versions below `8.1` has been dropped.
* PHP `8.1`, `8.2`, and `8.3` are now supported and tested.

## [1.1.0] - 2021-02-26
* Updates `beberlei/assert` version

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "7.3.* | 7.4.* | 8.0.* | 8.1.*",
"php": "8.1.* | 8.2.* | 8.3.*",
"ext-intl": "*",
"beberlei/assert": "^3.3"
},
Expand Down

0 comments on commit a198a24

Please sign in to comment.