From ea37bd5b69ece2e782d1a43a823f805b84effecb Mon Sep 17 00:00:00 2001 From: Christian Fasching Date: Fri, 14 Jun 2024 13:42:33 +0200 Subject: [PATCH 1/3] add platform-version --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 6ab1f210f..59e51708d 100644 --- a/README.md +++ b/README.md @@ -53,5 +53,15 @@ You don't need to have a PHP environment with composer installed. * The admin interface, using the credentials you have chosen above: +## Pimcore Platform Version +By default, Pimcore Platform Version is added as a dependency which ensures installation of compatible and in combination +with each other tested versions of additional Pimcore modules. More information about the Platform Version can be found in the +[Platform Version docs](https://github.com/pimcore/platform-version). + +It might be necessary to update a specific Pimcore module to a version that is not included in the Platform Version. +In that case, you need to remove the `platform-version` dependency from your `composer.json` and update the module to +the desired version. +Be aware that this might lead to a theoretically compatible but untested combination of Pimcore modules. + ## Other demo/skeleton packages - [Pimcore Basic Demo](https://github.com/pimcore/demo) From b051acd4046bbe0a79a94826cde0317d1152f2ae Mon Sep 17 00:00:00 2001 From: Christian Fasching Date: Fri, 14 Jun 2024 13:43:58 +0200 Subject: [PATCH 2/3] Update composer.json --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 2b67eebc1..9ea45cb7d 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,9 @@ }, "prefer-stable": true, "require": { - "pimcore/pimcore": "^11.1", - "pimcore/admin-ui-classic-bundle": "^1.2", + "pimcore/pimcore": "*", + "pimcore/platform-version": "^2024.1", + "pimcore/admin-ui-classic-bundle": "*", "symfony/amqp-messenger": "^6.2", "symfony/dotenv": "^6.2", "symfony/runtime": "^6.2" From bfeb54f6f6c72f6d72434e76c276674f047d144c Mon Sep 17 00:00:00 2001 From: Christian Fasching Date: Tue, 2 Jul 2024 13:56:49 +0200 Subject: [PATCH 3/3] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9ea45cb7d..6b810a39e 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "prefer-stable": true, "require": { "pimcore/pimcore": "*", - "pimcore/platform-version": "^2024.1", + "pimcore/platform-version": "^2024.2", "pimcore/admin-ui-classic-bundle": "*", "symfony/amqp-messenger": "^6.2", "symfony/dotenv": "^6.2",