Closed Nyholm closed 4 years ago
If you try it out and confirm that it is working as expected, I'll be happy to release it today
@dannyvw
you can use Composer's functionality to overwrite packages to temporarily provide your own fork instead of a package: https://getcomposer.org/doc/05-repositories.md#loading-a-package-from-a-vcs-repository
Loading a package from a VCS repository There are a few use cases for this. The most common one is maintaining your own fork of a third party library. If you are using a certain library for your project and you decide to change something in the library, you will want your project to use the patched version. If the library is on GitHub (this is the case most of the time), you can simply fork it there and push your changes to your fork. After that you update the project's composer.json. All you have to do is add your fork as a repository and update the version constraint to point to your custom branch. In composer.json, you should prefix your custom branch name with "dev-".
So, in your case it might be:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Nyholm/messenger-enqueue-transport"
}
],
"require": {
"sroze/messenger-enqueue-transport": "^0.4.0 | dev-release-040"
}
}
@Nyholm Thx, we will test it tomorrow i think.
@Steveb-p I have already configured that. But it would be nice to have a release :)
@dannyvw
Just try installing dev-master, that will allow you to run your tests. There is no need to download my fork.. since that only includes the changelog.md.
@Nyholm No issues on our side (2 projects)
Thank you
@Nyholm When will this be released?