symfony-cmf / routing-auto

RoutingAuto component
https://cmf.symfony.com
Other
6 stars 11 forks source link

Allow Symfony 3 and use caret operator #57

Closed wouterj closed 9 years ago

dantleech commented 9 years ago

So the caret operator upgrades minor versions even if we specify a patch release ^1.2.3? Any other benefit here, or is this just better practice?

wouterj commented 9 years ago

Caret operator is like the successor of the tilde operator, as it has semver knowledge:

^1.2.3 means >=1.2.3,<2.0 ^1.5 means >=1.5.0,<2.0 ^0.3 means 0.3.*