From 57f4d8c4006f266dcac9974e739155cb6fe3a957 Mon Sep 17 00:00:00 2001 From: Christopher Davis Date: Tue, 16 Jul 2024 11:13:26 -0500 Subject: [PATCH] Use the Correct Autoload Config for Files it's not autoload-dev :sob: --- CHANGELOG.md | 6 ++++++ composer.json | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6b80f..c6408cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.1.1 + +### Fixed + +- Fixed the open telemetry `_register.php` file autoload + ## 6.1.0 ### Added diff --git a/composer.json b/composer.json index 95f5deb..56827d8 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,10 @@ "autoload": { "psr-4": { "PMG\\Queue\\": "src/" - } + }, + "files": [ + "src/Otel/_register.php" + ] }, "autoload-dev": { "psr-4": { @@ -41,10 +44,7 @@ "test/unit/", "test/integration/" ] - }, - "files": [ - "src/Otel/_register.php" - ] + } }, "extra": { "branch-alias": {