This composer plugin provide a composer nexus-push
command that allow to push the current package into a Nexus
Composer repository hosted with nexus-repository-composer.
$ composer require elendev/nexus-composer-push
Many of the options are optional since they can be added directly to the composer.json
file.
# At the root of your directory
$ composer nexus-push [--name=<package name>] \
[--url=<URL to the composer nexus repository>] \
[--repository=<the repository you want to save, use this parameter if you want to control which repository to upload to by command-line parameter>] \
[--username=USERNAME] \
[--password=PASSWORD] \
[--ignore=test.php]\
[--ignore=foo/]\
[--ignore-by-git-attributes]
<version>
# Example
$ composer nexus-push --username=admin --password=admin123 --url=http://localhost:8081/repository/composer --ignore=test.php --ignore=foo/ 0.0.1
# Example of use --repository
# you need firstly configure multi repositories in composer.json of the project.
# Please refer to Configuration below (multi repository configuration format) for configuration method
# The component will be uploaded to the first repository whose's name value matching -- repository value
# If there is no matching between the value of repository name and the value of -- repository, the upload will fail with a prompt
$ composer nexus-push --username=admin --password=admin123 --repository=prod --ignore=test.php --ignore=foo/ 0.0.1
It's possible to add some configurations inside the composer.json
file
{
"extra": {
"nexus-push": {
"url": "http://localhost:8081/repository/composer",
"username": "admin",
"password": "admin123",
"ignore-by-git-attributes": true,
"ignore": [
"test.php",
"foo/"
]
}
}
}
Above configuration may be called unique repository configuration format, as you can only configue one nexus repository in composer.json.
In practice, for security reasons, different versions of component code, such as production and development, often apply different deployment policy, such as disable redeploy for the production version and allow redeploy for the development version, so they need to be stored in different nexus repositories. For versions later than 0.1.5, the command-line parameter -- repository is introduced to meet this requirement. To enable the -- repository parameter, the composer.json file needs to be in the following format:
{
"extra": {
"nexus-push": [{
"name": "prod",
"url": "http://localhost:8081/repository/composer-releases",
"username": "admin",
"password": "admin123",
"ignore-by-git-attributes": true,
"ignore": [
"test.php",
"foo/"
]
}, {
"name": "dev",
"url": "http://localhost:8081/repository/composer-devs",
"username": "admin",
"password": "admin123",
"ignore-by-git-attributes": true,
"ignore": [
"test.php",
"foo/"
]
}]
}
}
Above configuration may be called multi repository configuration format.
The new version continues to support parsing the unique repository configuration format, but remember that you cannot use the -- repository command line argument in this scenario.
The username
and password
can be specified in the auth.json
file on a per-user basis with the authentication mechanism provided by Composer.