Skip to content

Commit

Permalink
Fix autoload file name
Browse files Browse the repository at this point in the history
  • Loading branch information
zounar committed Dec 7, 2020
1 parent 6933fda commit c13550f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ protected static function exitWithError($message)
*/
public static function isInstalledWithComposer()
{
$autoloaderPath = join(DIRECTORY_SEPARATOR, [dirname(dirname(__DIR__)), 'autoloader.php']);
$autoloaderPath = join(DIRECTORY_SEPARATOR, [dirname(dirname(__DIR__)), 'autoload.php']);
return is_readable($autoloaderPath);
}

Expand Down

0 comments on commit c13550f

Please sign in to comment.