Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- { tag: 'v4.0', php: '8.4', distro: bookworm, version-override: "", latest-tag: true }
- { tag: '4.x', php: '8.4', distro: bookworm, version-override: "v4-dev", latest-tag: false }
- { tag: '5.x', php: '8.5', distro: trixie, version-override: "", latest-tag: false }
# - { tag: 'v5.0', php: '8.5', distro: trixie, version-override: "", latest-tag: false }
# - { tag: '5.x', php: '8.5', distro: trixie, version-override: "v5-dev", latest-tag: false }
- { tag: 'v5.0', php: '8.5', distro: trixie, version-override: "", latest-tag: true }
- { tag: '5.x', php: '8.5', distro: trixie, version-override: "v5-dev", latest-tag: false }

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
docker run --rm pimcore-image test ! -f /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
fi

docker run --rm pimcore-image composer create-project pimcore/skeleton:2025.x-dev pimcore --no-scripts ${{ matrix.composerOptions }}
docker run --rm pimcore-image composer create-project pimcore/skeleton:2026.x-dev pimcore --no-scripts ${{ matrix.composerOptions }}

if [ "$imageVariant" != "min" ]; then
docker run -v "$(pwd)/.github/files":/var/www/html --rm pimcore-image php test_heif.php
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ Use either of the following commands:


### Pimcore version compatibility & recommendations
| Image / Pimcore | v10 | v11 | v2023.3 | v2024.4 |v2025.x
|-----------------|-----|-----|---------|---------|------|
| v1 | ✅ | ✅ | ✅ | ✅ | ❌ |
| v2 | ❌ | ✅ | ✅ | ✅ | ❌ |
| v3 | ❌ | ✅* | ✅* | ✅* | ✅ |
| v4 | ❌ | ❌ | ❌ | ❌ | ✅* |
| Image / Pimcore | v10 | v11 | v2023.3 | v2024.4 |v2025.x|v2026.x|
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The table header formatting is inconsistent: there’s no space before the v2025.x and v2026.x columns (|v2025.x|v2026.x|). This renders fine, but makes the markdown harder to scan and inconsistent with the other columns. Consider adding spaces around those pipes for consistency.

Suggested change
| Image / Pimcore | v10 | v11 | v2023.3 | v2024.4 |v2025.x|v2026.x|
| Image / Pimcore | v10 | v11 | v2023.3 | v2024.4 | v2025.x | v2026.x |

Copilot uses AI. Check for mistakes.
|-----------------|-----|-----|---------|---------|------|-------|
| v1 | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
| v2 | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ |
| v3 | ❌ | ✅* | ✅* | ✅* | ✅ | ❌ |
| v4 | ❌ | ❌ | ❌ | ❌ | ✅* | ❌ |
| v5 | ❌ | ❌ | ❌ | ❌ | ❌ | ✅* |


> *) recommended version
Expand Down
Loading