Skip to content

Commit aba87dc

Browse files
committed
Pin CakePHP and Laminas fixtures to PHP_83_LATEST
cakephp/cakephp 4.4.x requires php >=7.4 <8.4, and the laminas skeleton requires ~8.1.0 || ~8.2.0 || ~8.3.0. With PHP 8.4/8.5 in the manifest, composer.json ^>=8.1 resolves to 8.5, breaking composer install. Pin these fixtures to PHP_83_LATEST to keep them on a supported PHP version until the fixtures are updated.
1 parent 28846a9 commit aba87dc

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

fixtures/cake/.bp-config/options.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"COMPOSER_INSTALL_OPTIONS": ["--no-interaction"],
44
"WEBDIR": "webroot",
55
"LIBDIR": "library",
6-
"PHP_EXTENSIONS": ["pdo", "pdo_sqlite", "mcrypt", "pdo_mysql"]
6+
"PHP_EXTENSIONS": ["pdo", "pdo_sqlite", "mcrypt", "pdo_mysql"],
7+
"PHP_VERSION": "{PHP_83_LATEST}"
78
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"WEBDIR": "public",
3-
"COMPOSER_VENDOR_DIR": "vendor"
3+
"COMPOSER_VENDOR_DIR": "vendor",
4+
"PHP_VERSION": "{PHP_83_LATEST}"
45
}

0 commit comments

Comments
 (0)