...
"require": {
"vendor/package": "1.3.2", // exactly 1.3.2 (exact)
// >, <, >=, <= | specify upper / lower bounds
"vendor/package": ">=1.3.2", // anything above or equal to 1.3.2
"vendor/package": "<1.3.2", // anything below 1.3.2
// * | wildcard
"vendor/package": "1.3.*", // >=1.3.0 <1.4.0
// ~ | allows last digit specified to go up
"vendor/package": "~1.3.2", // >=1.3.2 <1.4.0
"vendor/package": "~1.3", // >=1.3.0 <2.0.0
// ^ | doesn't allow breaking changes (major version fixed - following semvar)
"vendor/package": "^1.3.2", // >=1.3.2 <2.0.0
"vendor/package": "^0.3.2", // >=0.3.2 <0.4.0 // except if major version is 0
}
Last active
September 30, 2024 08:58
-
-
Save calebporzio/747fc600f3316e49c4dbb6cb4aab17ed to your computer and use it in GitHub Desktop.
Composer version symbol cheatsheet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you know the meaning of the symbols
!
and~
when runningcomposer outdated
?