Skip to content

Commit

Permalink
Start development of next major version
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 22, 2023
1 parent 7ce88bc commit 639a6c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Expand Up @@ -7,7 +7,7 @@ on:
name: "CI"

env:
COMPOSER_ROOT_VERSION: "4.0-dev"
COMPOSER_ROOT_VERSION: "5.0-dev"

permissions:
contents: read
Expand Down Expand Up @@ -61,7 +61,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.md
Expand Up @@ -2,6 +2,12 @@

All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.

## [5.0.0] - 2024-02-02

### Removed

* This component is no longer supported on PHP 8.1

## [4.0.0] - 2023-02-03

### Removed
Expand Down Expand Up @@ -47,6 +53,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt

* This component is no longer supported on PHP 7.1 and PHP 7.2

[5.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/4.0...main
[4.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/3.1.1...4.0.0
[3.1.1]: https://github.com/sebastianbergmann/php-invoker/compare/3.1.0...3.1.1
[3.1.0]: https://github.com/sebastianbergmann/php-invoker/compare/3.0.2...3.1.0
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Expand Up @@ -19,19 +19,20 @@
"security": "https://github.com/sebastianbergmann/php-invoker/security/policy"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"platform": {
"php": "8.1.0"
"php": "8.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=8.1"
"php": ">=8.2"
},
"require-dev": {
"ext-pcntl": "*",
"phpunit/phpunit": "^10.0"
"phpunit/phpunit": "^11.0"
},
"autoload": {
"classmap": [
Expand All @@ -48,7 +49,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "4.0-dev"
"dev-main": "5.0-dev"
}
}
}
Expand Down

0 comments on commit 639a6c8

Please sign in to comment.