Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add platform-version #193

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading