Skip to content

Commit

Permalink
php8.0 keep full backward compatibility and no need for breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
xklid101 committed Mar 14, 2024
1 parent 5ba2e2f commit a31fe96
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 10
matrix:
php: [ '8.1', '8.2', '8.3' ]
php: [ '8.0', '8.1', '8.2', '8.3' ]

steps:
- name: Set up PHP
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- PHP 8.3 support
- codeception/lib-innerbrowser ^4.0 support

## [4.1.0] - 2023-03-17
### Added
- PHP 8.2 support
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Inspiration comes from [herloct/codeception-slim-module](https://github.com/herl
## Install

### Minimal requirements
- php: `^8.1`
- php: `^8.0`
- slim/slim: `^4.7`
- codeception/codeception: `^5.0`

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.0",
"codeception/codeception": "^5.0",
"codeception/lib-innerbrowser": "^4.0",
"codeception/lib-innerbrowser": "^3.0 || ^4.0",
"slim/psr7": "^1.3",
"slim/slim": "^4.7"
},
Expand Down

0 comments on commit a31fe96

Please sign in to comment.