https://packagist.org/packages/braunstetter/choosy-type
not sure why symfony/form: ^6 is different than the rest, but composer thinks it's valid, can you change the library to support this format as well?
symfony/form ^6
https://packagist.org/packages/braunstetter/choosy-type
Version string '6' does not follow SemVer semantics
The code I'm using for this is
$version = '^6';
try {
$constraint = $parser->parse($version);
} catch (\Exception $exception) {
$this->logger->error(sprintf("%s %s\n%s\n%s",
$dependency, $version,
$this->getPackagistUrl($name),
$exception->getMessage()));
break;
}
https://packagist.org/packages/braunstetter/choosy-type
not sure why symfony/form: ^6 is different than the rest, but composer thinks it's valid, can you change the library to support this format as well?
The code I'm using for this is