Skip to content

Commit

Permalink
Add platform-version (#193)
Browse files Browse the repository at this point in the history
* add platform-version

* Update composer.json

* Update composer.json
  • Loading branch information
fashxp committed Jul 2, 2024
1 parent dcb9f0b commit bd95bf7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
<http://localhost/admin>

## 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)
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bd95bf7

Please sign in to comment.