From bd95bf70edaad61cf9626867ef1858d1ded7f920 Mon Sep 17 00:00:00 2001 From: Christian Fasching Date: Tue, 2 Jul 2024 14:03:02 +0200 Subject: [PATCH] Add platform-version (#193) * add platform-version * Update composer.json * Update composer.json --- README.md | 10 ++++++++++ composer.json | 5 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 25ff851fa..15c172f3c 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) diff --git a/composer.json b/composer.json index 2b67eebc1..6b810a39e 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.2", + "pimcore/admin-ui-classic-bundle": "*", "symfony/amqp-messenger": "^6.2", "symfony/dotenv": "^6.2", "symfony/runtime": "^6.2"