From 42022cf11511cdbba91b29017f1c2e3a8cd674a7 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Fri, 31 Oct 2025 20:13:39 +0100 Subject: [PATCH 1/2] Update Box --- compiler/box/composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/box/composer.lock b/compiler/box/composer.lock index 1248d05173..b6be0effd1 100644 --- a/compiler/box/composer.lock +++ b/compiler/box/composer.lock @@ -1330,16 +1330,16 @@ }, { "name": "humbug/box", - "version": "4.6.9", + "version": "4.6.10", "source": { "type": "git", "url": "https://github.com/box-project/box.git", - "reference": "db022b8454a32ce8c2a60895b39c1bedaa1f604e" + "reference": "6dc6a1314d63e9d75c8195c996e1081e68514c36" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/box-project/box/zipball/db022b8454a32ce8c2a60895b39c1bedaa1f604e", - "reference": "db022b8454a32ce8c2a60895b39c1bedaa1f604e", + "url": "https://api.github.com/repos/box-project/box/zipball/6dc6a1314d63e9d75c8195c996e1081e68514c36", + "reference": "6dc6a1314d63e9d75c8195c996e1081e68514c36", "shasum": "" }, "require": { @@ -1438,9 +1438,9 @@ ], "support": { "issues": "https://github.com/box-project/box/issues", - "source": "https://github.com/box-project/box/tree/4.6.9" + "source": "https://github.com/box-project/box/tree/4.6.10" }, - "time": "2025-10-31T09:03:33+00:00" + "time": "2025-10-31T18:38:02+00:00" }, { "name": "humbug/php-scoper", From 9ac8f07a08d6df81284b624376f560fb6511f509 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Fri, 31 Oct 2025 20:15:45 +0100 Subject: [PATCH 2/2] Try Box's `--sort-compiled-files` --- .github/workflows/phar.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phar.yml b/.github/workflows/phar.yml index 6485a87369..824a6b84a4 100644 --- a/.github/workflows/phar.yml +++ b/.github/workflows/phar.yml @@ -71,7 +71,7 @@ jobs: - name: "Compile PHAR" working-directory: "compiler/build" - run: "php ../box/vendor/bin/box compile --no-parallel" + run: "php ../box/vendor/bin/box compile --no-parallel --sort-compiled-files" - uses: actions/upload-artifact@v4 with: @@ -94,7 +94,7 @@ jobs: - name: "Compile PHAR for checksum" working-directory: "compiler/build" - run: "php ../box/vendor/bin/box compile --no-parallel" + run: "php ../box/vendor/bin/box compile --no-parallel --sort-compiled-files" env: PHAR_CHECKSUM: "1" COMPOSER_ROOT_VERSION: "2.1.x-dev"