Skip to content

Commit a80dc52

Browse files
authored
Merge pull request #17 from timoschinkel/inspections-on-php-83
Support for PHP 8.3
2 parents 318fc05 + 52ce6cd commit a80dc52

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
10+
php-versions: ['8.0', '8.1', '8.2', '8.3']
1111
name: PHP ${{ matrix.php-versions }}
1212

1313
steps:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.0] - 2023-12-20
8+
### Removed
9+
- Support for PHP versions < 8.0
10+
11+
### Changed
12+
- Dependency on `psr/http-message` now is `^1.0 || ^2.0`
13+
714
## [1.1.0] - 2020-11-26
815
### Added
916
- Support for PHP 8

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"type": "library",
55
"license": "MIT",
66
"require": {
7-
"php": "^7.2 || ^8.0",
7+
"php": "^8.0",
88
"psr/http-client": "^1.0",
9-
"psr/http-message": "^1.0"
9+
"psr/http-message": "^1.0 || ^2.0"
1010
},
1111
"require-dev": {
12-
"phpspec/prophecy": "^1.12",
13-
"phpunit/phpunit": "^8.0 || ^9.0",
12+
"phpspec/prophecy": "^1.17",
13+
"phpunit/phpunit": "^9.0 || ^10.0",
1414
"squizlabs/php_codesniffer": "^3.5"
1515
},
1616
"autoload": {

0 commit comments

Comments
 (0)