Renamed third party packages directories

This commit is contained in:
Bernd Bestel
2023-06-03 17:36:01 +02:00
parent 70bb014c9f
commit de4c6e8b60
9 changed files with 64 additions and 63 deletions

View File

@@ -26,9 +26,9 @@ class PrerequisiteChecker
private function checkForComposer()
{
if (!file_exists(__DIR__ . '/../vendor/autoload.php'))
if (!file_exists(__DIR__ . '/../packages/autoload.php'))
{
throw new ERequirementNotMet('/vendor/autoload.php not found. Have you run Composer?');
throw new ERequirementNotMet('/packages/autoload.php not found. Have you run Composer?');
}
}