diff --git a/src/Minifier/SystemUtils.php b/src/Minifier/SystemUtils.php index 9423981..49e9497 100644 --- a/src/Minifier/SystemUtils.php +++ b/src/Minifier/SystemUtils.php @@ -64,6 +64,7 @@ private function getArchitecture(string $architecture): ?string { return match (\strtolower($architecture)) { 'amd64', 'x86_64' => self::ARCH_AMD64, + 'aarch64' => self::ARCH_ARM64, 'arm64' => self::ARCH_ARM64, 'i386', 'i686' => self::ARCH_X86, default => null,