Skip to content

Commit 253ccdb

Browse files
committed
ci: update php version requirement to 8.4 and update composer lock file
The commit updates the minimum PHP version requirement from 8.3 to 8.4 across composer configuration files and updates the content hash and reference identifiers in the composer lock file and vendor files to reflect the new PHP version requirement. This ensures compatibility with PHP 8.4 while maintaining proper dependency resolution.
1 parent 9d6bdf4 commit 253ccdb

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'renderpci/dedalo',
44
'pretty_version' => 'dev-master',
55
'version' => 'dev-master',
6-
'reference' => 'b728ef785727014dc742e99540aabe4da6121371',
6+
'reference' => '9d6bdf4f00f633eeb0e944fda64c40a2525e35f9',
77
'type' => 'library',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -112,7 +112,7 @@
112112
'renderpci/dedalo' => array(
113113
'pretty_version' => 'dev-master',
114114
'version' => 'dev-master',
115-
'reference' => 'b728ef785727014dc742e99540aabe4da6121371',
115+
'reference' => '9d6bdf4f00f633eeb0e944fda64c40a2525e35f9',
116116
'type' => 'library',
117117
'install_path' => __DIR__ . '/../../',
118118
'aliases' => array(),

vendor/composer/platform_check.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
$issues = array();
66

7-
if (!(PHP_VERSION_ID >= 80300)) {
8-
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.3.0". You are running ' . PHP_VERSION . '.';
7+
if (!(PHP_VERSION_ID >= 80400)) {
8+
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.4.0". You are running ' . PHP_VERSION . '.';
99
}
1010

1111
if ($issues) {

0 commit comments

Comments
 (0)