From 2f511160f71bb57a5cf00cd1827c38340b6ab9d8 Mon Sep 17 00:00:00 2001 From: Lukas Rosenstock Date: Tue, 18 Aug 2026 11:13:30 +0000 Subject: [PATCH] Changed autoloading from PSR-0 to PSR-4 --- composer.json | 6 +++--- CloudObjects/SDK/functions.php => functions.php | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename CloudObjects/SDK/functions.php => functions.php (100%) diff --git a/composer.json b/composer.json index 38bfd9f..77150ef 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ } ], "autoload": { - "psr-0": { - "CloudObjects\\SDK" : "" + "psr-4": { + "CloudObjects\\SDK\\" : "CloudObjects/SDK/" }, "files": [ - "CloudObjects/SDK/functions.php" + "functions.php" ] }, "require-dev" : { diff --git a/CloudObjects/SDK/functions.php b/functions.php similarity index 100% rename from CloudObjects/SDK/functions.php rename to functions.php