Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
php-version:
- "8.3"
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"

Expand Down
3 changes: 3 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"extensions": [
"bcmath", "pcov"
],
"ignore_php_platform_requirements": {
"8.5": true
},
"ini": [
"memory_limit=-1"
],
Expand Down
6 changes: 6 additions & 0 deletions bin/roave-backward-compatibility-check.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,15 @@
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Output\ConsoleOutput;

use function error_reporting;
use function file_exists;

use const E_ALL;
use const E_DEPRECATED;

(static function (): void {
error_reporting(E_ALL & ~E_DEPRECATED);

(static function (): void {
$autoloaderLocations = [
__DIR__ . '/../vendor/autoload.php', // Installed by cloning the project and running `composer install`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "roave/backward-compatibility-check",
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"require": {
"php": "~8.3.0 || ~8.4.0",
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
Expand Down
Loading
Loading