Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/php-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:
permissions: {}

env:
PHP_VERSION_LATEST: "8.4"
PHP_VERSION_LATEST: "8.5"
PHP_PROJECT_EXT: dom,filter,json,libxml,simplexml # via `composer info -pt`

jobs:
Expand All @@ -44,7 +44,8 @@ jobs:
- "macos-latest"
- "windows-latest"
php:
- "8.4" # highest supported
- "8.5" # highest supported
- "8.4"
- "8.3"
- "8.2"
- "8.1" # lowest supported
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ permissions: {}

env:
PHP_VERSION_LOWEST: "8.1" # lowest supported
PHP_VERSION_LATEST: "8.4" # highest supported
PHP_VERSION_LATEST: "8.5" # highest supported
PHP_PROJECT_EXT: dom,json,libxml,simplexml # via `composer info -pt`
REPORTS_DIR: CI_reports
TESTS_REPORTS_ARTIFACT: tests-reports
Expand Down Expand Up @@ -54,7 +54,8 @@ jobs:
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
php:
- "8.4" # highest supported
- "8.5" # highest supported
- "8.4"
- "8.3"
- "8.2"
- "8.1" # lowest supported
Expand Down Expand Up @@ -152,7 +153,7 @@ jobs:
matrix:
include:
- # highest supported
php: "8.4"
php: "8.5"
dependencies: "highest"
- # lowest supported
php: "8.1"
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file.

<!-- add unreleased items here -->

* Added
* Officially support PHP 8.5 ([#566] via [#574])

[#566]: https://github.com/CycloneDX/cyclonedx-php-library/issues/566
[#574]: https://github.com/CycloneDX/cyclonedx-php-library/pull/574

## 3.9.0 - 2025-12-02

* Added
Expand Down
2 changes: 1 addition & 1 deletion tools/composer-require-checker/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"php": "^8.1.31"
},
"require-dev": {
"maglnet/composer-require-checker": "4.7.1||4.16.1",
"maglnet/composer-require-checker": "4.7.1||4.16.1||4.19.0",
"roave/security-advisories": "dev-latest"
},
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion tools/php-cs-fixer/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"php": "^8.1.31"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.91.0",
"friendsofphp/php-cs-fixer": "3.91.2",
"roave/security-advisories": "dev-latest"
},
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion tools/phpunit/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"php": "^8.1.31"
},
"require-dev": {
"phpunit/phpunit": "10.5.45||11.5.7||12.0.2",
"phpunit/phpunit": "10.5.45||11.5.7||12.4.5",
"roave/security-advisories": "dev-latest"
},
"prefer-stable": true,
Expand Down
Loading