From 27371f006211a71e18919e5167bb9e48adb7efb8 Mon Sep 17 00:00:00 2001 From: Nicolas Alexandre Date: Thu, 15 Jun 2023 17:38:30 +0200 Subject: [PATCH 1/2] feat: update composer with the new dependencies of monorepo agent-php --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index eab4d52..8e085d3 100644 --- a/composer.json +++ b/composer.json @@ -8,9 +8,10 @@ "php": ">=8.0", "asm89/stack-cors": "^2.1", "doctrine/orm": "^2.8", - "forestadmin/agent-php": "^1.0.0-beta", "symfony/framework-bundle": "^5.4|^6.0", - "symfony/console": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0", + "forestadmin/php-datasource-doctrine": "^1.0@beta", + "forestadmin/php-datasource-customizer": "^1.0@beta" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.0", From 68e900ee105c563a2b7b23afbe2475983a4e5186 Mon Sep 17 00:00:00 2001 From: Nicolas Alexandre Date: Thu, 15 Jun 2023 17:46:02 +0200 Subject: [PATCH 2/2] fix(composer): set minimum-stability to beta --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8e085d3..afc22ef 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,8 @@ { "name": "forestadmin/symfony-forestadmin", "version": "1.0.0-beta.12", - "minimum-stability": "stable", + "minimum-stability": "beta", + "prefer-stable": true, "description": "Forest Admin provides an off-the-shelf administration panel based on a highly-extensible API plugged into your application.", "type": "symfony-bundle", "require": {