composer update prefer lowest should be workign now
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Successful in 7m12s
CI / Coding Standard & Static Analysis (push) Failing after 9m26s
CI / testsuite (mysql, 8.4, ) (push) Has been cancelled
CI / testsuite (pgsql, 8.2, ) (push) Has been cancelled
CI / testsuite (pgsql, 8.4, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, ) (push) Has been cancelled
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 15m27s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 23m10s

This commit is contained in:
2026-01-23 00:17:04 -08:00
parent 79fc182909
commit d0936e789f
2 changed files with 5 additions and 5 deletions

View File

@@ -4,15 +4,16 @@
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.1",
"php": ">=8.2",
"cakephp/cakephp": "^5.1",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"phpunit/phpunit": "^10.3",
"php-collective/decimal-object": "^1.3",
"cakephp/migrations": "^4.0.0",
"phpstan/phpstan": "^2.1"
"phpstan/phpstan": "^2.1",
"dereuromark/composer-prefer-lowest": "^0.1.10"
},
"suggest": {
"dereuromark/cakephp-geo": "^3.2"

View File

@@ -9,7 +9,6 @@ use Cake\Database\Connection;
use Cake\Datasource\ConnectionManager;
use Cake\TestSuite\Fixture\SchemaLoader;
use CakeAddresses\CakeAddressesPlugin;
use CakeProducts\CakeProductsPlugin;
use Migrations\TestSuite\Migrator;
use TestApp\Controller\AppController;