I'm trying to find a proper way to force composer to symlink local package.
I know there is a question How to force Composer to download a local package? but it does not answers my questions. I need to make sure it works as expected because I'm going to use this in CI workflow.
Having project's composer.json like:
{
"name": "Some project",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [{
"type": "path",
"url": "packages/*/*"
}]
}
And package's composer.json (packages/sample/package):
{
"name": "Sample package",
"version": "1.0.0"
}
Let's assume that:
sample/package:1.0.0 is published in packagist (commit aaaaaa) - with unmodified composer.json
sample/package locally is checked out on commit bbbbbb
version of sample/package locallyCommand 1:
$ composer require sample/package
Package is fetched from packagist (version 1.0.0, commit aaaaaa).
Command 2:
$ composer require sample/package:@dev
Package is symlinked from local version to vendor directory (version 1.0.0, commit bbbbbb, symlinked).
Questions are:
minimum-stability option? Version constraint @dev lets you enforce different stability but it already down to dev with project config. My best educated guess would be that when no version constraint is provided in composer require sample/package, Composer will still try to find a stable version to install, because of "prefer-stable": true. When you set this option to false (or provide @dev version constraint for the package explicitly) you should see Composer using the latest available version (dev-master on commit bbbbbb).
Not in every case. You can force Composer to always symlink packages using "symlink": true option.
From https://getcomposer.org/doc/05-repositories.md#path:
The local package will be symlinked if possible, in which case the output in the console will read Symlinked from
../../packages/my-package. If symlinking is not possible the package will be copied. In that case, the console will output Mirrored from../../packages/my-package.Instead of default fallback strategy you can force to use symlink with
"symlink": trueor mirroring with"symlink": falseoption. Forcing mirroring can be useful when deploying or generating package from a monolithic repository.
You should probably avoid dropping "prefer-stable": true from composer.json as this would affect all dependencies.
I'd suggest to just make sure you explicitly require @dev version for sample/package and set "symlink": true for the local repository. This would result in something like:
{
"name": "Some project",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [{
"type": "path",
"url": "packages/*/*",
"symlink": true
}],
"require": {
"sample/package": "@dev"
}
}
If the very useful information provided by @Maciek Lewkowicz doesn't work, maybe you are in this situation:
dev-master);composer.json was the source of the package, setting the repo in the repositories key of the composer.json file).In this situation a simple composer update will not work: Composer will not intercept the change: for Composer is irrelevant that you changed the repository from the remote to the local path one. It only checks that the branch is the same and so doesn't update at all.
So, in this case, nothing will work: it will not work to use symlink: force nor it will work to change the preferences about the source and so on.
The only thing that will work is to change the branch.
So, for example, your composer.json will be something like this:
{
...
"require": {
...
- "your/package": "dev-master",
+ "your/package": "dev-dev",
...
},
...
"repositories": [
{
"type": "path",
"url": "/Path/To/Your/Local/package"
}
]
}
Here dev-dev is a new branch called dev: changing the branch from dev-master to dev-dev will force Composer to download again the package as the required branch is not dev-master anymore.
In downloading again the package, Composer will also check that the new source is now a local path and so it will symlink the folder.
Also note that composer install will not work, also if you change the branch name.
YOU HAVE TO USE composer update.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With