1
0
Fork 0

Update only one package

This PR come with https://github.com/composer/satis/pull/509
pull/8215/head
kpitn 2019-07-09 15:29:21 +02:00 committed by GitHub
parent e022c07370
commit 8def53c4b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -112,6 +112,19 @@ Note that this will still need to pull and scan all of your VCS repositories
because any VCS repository might contain (on any branch) one of the selected because any VCS repository might contain (on any branch) one of the selected
packages. packages.
If you want to scan only the selected package and not all VCS repositories you need
to declare a *name* for all your package (this only work on VCS repositories type) :
```json
{
"repositories": [
{ "name": "company/privaterepo", "type": "vcs", "url": "https://github.com/mycompany/privaterepo" },
{ "name": "private/repo", "type": "vcs", "url": "http://svn.example.org/private/repo" },
{ "name": "mycompany/privaterepo2", "type": "vcs", "url": "https://github.com/mycompany/privaterepo2" }
]
}
```
If you want to scan only a single repository and update all packages found in If you want to scan only a single repository and update all packages found in
it, pass the VCS repository URL as an optional argument: it, pass the VCS repository URL as an optional argument: