From cea2477dd37208ac67034cb5d5e0561448f0019f Mon Sep 17 00:00:00 2001 From: elwafa Date: Sat, 12 Apr 2025 01:40:06 +0200 Subject: [PATCH 1/2] support linux arm 64 --- composer.json | 2 +- src/Platform.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 62a3589..9d0565a 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "volt-test/php-sdk", "description": "Volt Test PHP SDK - A performance testing tool for PHP applications", "type": "library", - "version": "1.0.0", + "version": "1.1.0", "keywords": [ "volt-test", "php-sdk", diff --git a/src/Platform.php b/src/Platform.php index 4d8c60c..1be93f0 100644 --- a/src/Platform.php +++ b/src/Platform.php @@ -10,6 +10,7 @@ class Platform private const BASE_DOWNLOAD_URL = 'https://github.com/volt-test/binaries/releases/download'; private const SUPPORTED_PLATFORMS = [ 'linux-amd64' => 'volt-test-linux-amd64', + 'linux-arm64' => 'volt-test-linux-arm64', 'darwin-amd64' => 'volt-test-darwin-amd64', 'darwin-arm64' => 'volt-test-darwin-arm64', ]; From 50229465d9275c5450367f714015947db9a6ed45 Mon Sep 17 00:00:00 2001 From: elwafa Date: Fri, 11 Jul 2025 21:24:50 +0300 Subject: [PATCH 2/2] release with new version of Engine --- composer.json | 4 ++-- src/Platform.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 9d0565a..912849e 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "volt-test/php-sdk", - "description": "Volt Test PHP SDK - A performance testing tool for PHP applications", + "description": "Volt Test PHP SDK - A performance testing tool for PHP Developers", "type": "library", - "version": "1.1.0", + "version": "1.1.1", "keywords": [ "volt-test", "php-sdk", diff --git a/src/Platform.php b/src/Platform.php index 1be93f0..452c55e 100644 --- a/src/Platform.php +++ b/src/Platform.php @@ -6,7 +6,7 @@ class Platform { private const BINARY_NAME = 'volt-test'; - private const ENGINE_CURRENT_VERSION = 'v1.0.0'; + private const ENGINE_CURRENT_VERSION = 'v1.1.0'; private const BASE_DOWNLOAD_URL = 'https://github.com/volt-test/binaries/releases/download'; private const SUPPORTED_PLATFORMS = [ 'linux-amd64' => 'volt-test-linux-amd64',