From 5e5aead62178569afb1858949c01eb7cff01738a Mon Sep 17 00:00:00 2001 From: Saksham Gupta Date: Mon, 29 Jul 2024 21:26:43 +0530 Subject: [PATCH] fix: remove vendor/autoload from UuidUtil --- CHANGELOG.md | 5 +++++ composer.json | 2 +- src/Utils/UuidUtil.php | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7cdcca..e0f16f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +[1.2.3] - 2024-07-29 +### Fixed + +- Removed unnecessary vendor/autoload from UuidUtil.php + [1.2.1] - 2024-07-17 ### Added diff --git a/composer.json b/composer.json index 818863e..eee2eb0 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "vwo/vwo-fme-php-sdk", - "version": "1.2.1", + "version": "1.2.3", "keywords": ["vwo", "fme", "sdk"], "license": "Apache-2.0", "authors": [{ diff --git a/src/Utils/UuidUtil.php b/src/Utils/UuidUtil.php index 8f73507..ef0a313 100644 --- a/src/Utils/UuidUtil.php +++ b/src/Utils/UuidUtil.php @@ -17,7 +17,6 @@ */ namespace vwo\Utils; -require 'vendor/autoload.php'; use Ramsey\Uuid\Uuid;