-
-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Labels
Description
Hey @franzliedke thanks a lot for taking the time to put together the recent release.
However, I have noticed one significant issue with the newly-generated composer.lock file. Normally composer generates something like this:
{
"name": "owner/repo",
"version": "dev-master",
"source": {
"type": "git",
"url": "git@github.com:owner/repo.git",
"reference": "2cf2e58fc8b71f44dbcca306cf7e16a65a2d4e97"
},
...
}There would also be a dist with the zipped contents of the git repo.
With the new updates, the composer lock file now looks like this:
{
"name": "owner/repo",
"version": "dev-master",
"dist": {
"type": "path",
"url": "../../path/to/repo/",
"reference": "2cf2e58fc8b71f44dbcca306cf7e16a65a2d4e97",
"shasum": null
},
...
}Trouble with this is that when we push the code up through the pipeline, our servers will try to install that composer.lock file and it won't be able to figure out how to grab the dist. Since you're already using this in a real project, I'm guessing there's some other approach that I'm missing. Let me know what you think.
mikebronner, jonnywilliamson, LavaToaster, mnpenner, rask and 16 more