在composer.json文件中需要包时,有什么区别:
"require": {
"SomePackage": "1.*"
}
和
"require": {
"SomePackage": "1.x"
}
或两者都是一回事?
答案 0 :(得分:3)
325. // match wildcard constraints
326. if (preg_match('{^(\d+)(?:\.(\d+))?(?:\.(\d+))?\.[x*]$}', $constraint, $matches)) {
^^
您可以在此正则表达式中看到x
确实是*
的{{3}}别名。