From d0936e789f27887672d1a28b87bd78da03b76b44 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 23 Jan 2026 00:17:04 -0800 Subject: [PATCH] composer update prefer lowest should be workign now --- composer.json | 9 +++++---- tests/bootstrap.php | 1 - 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index f03a0aa..13a3f0a 100644 --- a/composer.json +++ b/composer.json @@ -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" diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 31b3827..38ebb8e 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -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;