From ba8ac35138bd36585b83c71fc2c62fbd71c817a5 Mon Sep 17 00:00:00 2001 From: mscherer Date: Thu, 30 Apr 2026 15:36:48 +0200 Subject: [PATCH] Set minimum-stability to stable All required and require-dev dependencies are tagged stable releases. Setting minimum-stability explicitly to stable is cleaner than relying on dev with prefer-stable, and matches the convention used in other cakephp plugins (bake, chronos, authentication, queue, etc.). --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 485ccec..8dce7d7 100644 --- a/composer.json +++ b/composer.json @@ -79,6 +79,6 @@ "test": "phpunit", "test-coverage": "phpunit --coverage-clover=clover.xml" }, - "minimum-stability": "dev", + "minimum-stability": "stable", "prefer-stable": true }