Moved check behind Extensions check

This commit is contained in:
Marc Ole Bulling 2020-04-28 10:25:34 +02:00
parent 05dcd5aec0
commit 722bdf4087
No known key found for this signature in database
GPG Key ID: C126AFC2A47B06FF

View File

@ -10,11 +10,11 @@ class PrerequisiteChecker
{
public function checkRequirements()
{
self::checkForSqliteVersion();
self::checkForConfigFile();
self::checkForConfigDistFile();
self::checkForComposer();
self::checkForPhpExtensions();
self::checkForSqliteVersion();
}