composer
#######################################################################################################
:exclamation: DEPRECATION :exclamation:
This repository and the role associated are deprecated in favor of the Manala Ansible Collection
You will find informations on its usage on the collection repository
#######################################################################################################
Ansible Role: Composer
:exclamation: Report issues and send Pull Requests in the main Ansible Role repository :exclamation:
This role will deal with the setup of Composer
It's part of the Manala Ansible stack but can be used as a stand alone component.
Requirements
None.
Dependencies
This role requires php-cli >=5.3.2. You can use manala.php role.
Installation
Ansible 2+
Using ansible galaxy cli:
ansible-galaxy install manala.composer
Using ansible galaxy requirements file:
- src: manala.composer
Role Handlers
None.
Role Variables
Definition
Name | Default | Type | Description |
---|---|---|---|
manala_composer_version |
~ | String | Version to install, latest by default |
manala_composer_install_packages |
~ | Array | Dependency packages to install |
manala_composer_install_packages_default |
['openssl', 'ca-certificates'] | Array | Default dependency packages to install |
manala_composer_bin |
'/usr/local/bin/composer' | String | Binary path |
manala_composer_users_auth_template |
~ | String | User auth template path |
manala_composer_users_auth |
[] | Array | User auth config |
manala_composer |
{} | Dict | Use for custom flags |
Configuration example
Versions
By default, the role installs the latest version of composer (channel stable).
If you want a specific version, set manala_composer_version
value to the desired version (ie 1.10.16
)
If you want the latest version of a specific channel (major version), set manala_composer_version
value to the desired channel (ie 1
or 2
)
If you set a specific channel, and want to update to the latest version of this specific channel :
- Set
manala_composer_version
value to the desired channel (ie1
or2
) - Set
manala_composer.update=true
Composer configuration with github token
manala_composer_users_auth:
- user: foo
config:
github-oauth:
github.com: 9927d2878ffa105fc5236c762f2fd7zfd28b841d
http-basic:
repo.example1.org:
username: my-username1
password: my-secret-password1
- user: bar
# Use raw content
config: |
{
"github-oauth": {
"github.com": "9927d2878ffa105fc5236c762f2fd7zfd28b841d"
},
"http-basic": {
"repo.example1.org": {
"username": "my-username1",
"password": "my-secret-password1"
}
}
}
- user: baz
config:
# Use dict's array syntax (deprecated)
- github-oauth:
- github.com: 9927d2878ffa105fc5236c762f2fd7zfd28b841d
- http-basic:
- repo.example1.org:
- username: my-username1
- password: my-secret-password1
Example playbook
- hosts: servers
roles:
- role: manala.composer
Licence
MIT
Author information
Manala (http://www.manala.io/)
ansible-galaxy install manala/ansible-role-composer