Skip to content

Commit

Permalink
Merge pull request #5 from ajgarlag/feature/drop-php7
Browse files Browse the repository at this point in the history
Drop support for PHP <8.0
  • Loading branch information
ajgarlag authored Aug 24, 2023
2 parents 86150a7 + 9946f80 commit bf27920
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
php: ['8.0', '8.1', '8.2']
stability: ['prefer-lowest', 'prefer-stable']
allow_failure: [false]
include:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Removed
- Drop support of PHP <8.0

## [0.4.1] - 2022-04-28

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"php": ">=8.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^7.2",
"friendsofphp/php-cs-fixer": "^3.8",
"nyholm/psr7": "^1.5",
"phpstan/phpstan": "^1.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0"
"phpspec/phpspec": "^7.4",
"friendsofphp/php-cs-fixer": "^3.23",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit bf27920

Please sign in to comment.