From a691d4fdfbfdcd446edc9d4fb9cef822e804e168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20K=C3=9C=C3=87=C3=9CK?= Date: Mon, 2 Sep 2024 14:04:42 +0300 Subject: [PATCH] fix autoload --- composer.json | 5 +++++ Client.php => src/Client.php | 0 2 files changed, 5 insertions(+) rename Client.php => src/Client.php (100%) diff --git a/composer.json b/composer.json index ceb2fd9..49a334f 100644 --- a/composer.json +++ b/composer.json @@ -5,6 +5,11 @@ "require-dev": { "guzzlehttp/guzzle": "^7.9" }, + "autoload": { + "psr-4": { + "GooglePlaces\\": "src/" + } + }, "license": "MIT", "authors": [ { diff --git a/Client.php b/src/Client.php similarity index 100% rename from Client.php rename to src/Client.php