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 Jan 16, 2025
1 parent 7b3bcff commit 7dddd66
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
name: "CI"

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

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

All notable changes to `sebastianbergmann/object-reflector` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [5.0.0] - 2025-02-07

### Removed

* This component is no longer supported on PHP 8.2

## [4.0.1] - 2024-07-03

### Changed
Expand Down Expand Up @@ -68,6 +74,7 @@ All notable changes to `sebastianbergmann/object-reflector` are documented in th

* Initial release

[5.0.0]: https://github.com/sebastianbergmann/object-reflector/compare/4.0...main
[4.0.1]: https://github.com/sebastianbergmann/object-reflector/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/sebastianbergmann/object-reflector/compare/3.0...4.0.0
[3.0.0]: https://github.com/sebastianbergmann/object-reflector/compare/2.0.4...3.0.0
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@
"issues": "https://github.com/sebastianbergmann/object-reflector/issues",
"security": "https://github.com/sebastianbergmann/object-reflector/security/policy"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2.0"
"php": "8.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=8.2"
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.3"
"phpunit/phpunit": "^12.0-dev"
},
"autoload": {
"classmap": [
Expand All @@ -39,7 +40,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "4.0-dev"
"dev-main": "5.0-dev"
}
}
}

0 comments on commit 7dddd66

Please sign in to comment.