Created
January 16, 2014 20:48
-
-
Save jeremykendall/8463135 to your computer and use it in GitHub Desktop.
When I run `composer update vendor/package` or `compser update --lock` all of the reference hashes are changed to exact versions, and package versions with the tilde operator are changed to their equivalent version ranges. Here's a portion of the diff to help. I've uninstalled and reinstalled composer, cleared the `~/.composer` cache, rebooted m…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"dist": { | |
"type": "zip", | |
- "url": "https://<private-git-repo>/repos/mirrors/doctrine-doctrine-bundle/zipball/765b0d87fcc3e839c74817b7211258cbef3a4fb9?access_token=981ac7c34450e7a84f7252b43cdc508ed1748d3e", | |
- "reference": "765b0d87fcc3e839c74817b7211258cbef3a4fb9", | |
+ "url": "https://<private-git-repo>/repos/mirrors/doctrine-doctrine-bundle/zipball/v1.2.0?access_token=981ac7c34450e7a84f7252b43cdc508ed1748d3e", | |
+ "reference": "v1.2.0", | |
"shasum": null | |
}, | |
"require": { | |
"doctrine/dbal": ">=2.2,<2.5-dev", | |
- "jdorn/sql-formatter": "~1.1", | |
+ "jdorn/sql-formatter": ">=1.1,<2.0", | |
"php": ">=5.3.2", | |
- "symfony/doctrine-bridge": "~2.2", | |
- "symfony/framework-bundle": "~2.2" | |
+ "symfony/doctrine-bridge": ">=2.2,<3.0", | |
+ "symfony/framework-bundle": ">=2.2,<3.0" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment