I'm a bit confused the difference between '~' and '^' in packagist ,
code example in composer.json file:
"require": {
"doctrine/dbal": "^2.6", //this is using '^' symbol
"garygreen/pretty-routes": "~0.0.6" //this is using '~' symbol
},
Can someone explain this for me ?