Merge pull request #1 from swumao/swumao-patch-1

Add config>platform checking
main
Parallel 7 years ago committed by GitHub
commit 4d87f66af5

@ -63,6 +63,16 @@ class ValidatingArrayLoader implements LoaderInterface
unset($this->config['version']);
}
}
if (!empty($this->config['config']['platform'])) {
foreach ((array)$this->config['config']['platform'] as $key=>$platform) {
try {
$this->versionParser->normalize($platform);
} catch (\Exception $e) {
$this->errors[] = 'config.platform.' . $key . ' : invalid value ('.$platform.'): '.$e->getMessage();
}
}
}
$this->validateRegex('type', '[A-Za-z0-9-]+');
$this->validateString('target-dir');

Loading…
Cancel
Save