From fb18493be6ff384f63ea28e3d017b9c62e77cc5f Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 13 Oct 2020 09:26:17 +0200 Subject: [PATCH] Fix working directory --- src/AppConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppConfig.php b/src/AppConfig.php index 0a5185a..bca712c 100644 --- a/src/AppConfig.php +++ b/src/AppConfig.php @@ -23,7 +23,7 @@ class AppConfig $appRoot = $this->appRoot; } else { $workingDirectory = str_replace('\\', '/', __DIR__); - $workingDirectory = str_replace('/vendor/haydenpierce/class-finder/src', '', $workingDirectory); + $workingDirectory = str_replace('/vendor/danog/class-finder/src', '', $workingDirectory); $directoryPathPieces = explode('/', $workingDirectory); $appRoot = null;