From f81e39a672b8fc37277599f84a8693f1b54de3e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCnch?= Date: Tue, 18 Feb 2025 19:24:59 +0100 Subject: [PATCH] build: update box to the latest version to support newer php --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 83ac9862..2bf7f43b 100755 --- a/build.sh +++ b/build.sh @@ -50,7 +50,7 @@ function check_dependencies() { function download_box() { if [ ! -f box.phar ]; then - curl -L https://github.com/box-project/box/releases/download/3.16.0/box.phar -o $BOX_BIN + curl -L https://github.com/box-project/box/releases/download/4.6.2/box.phar -o $BOX_BIN chmod +x ./box.phar fi }