puppet-composer
puppet-composer copied to clipboard
A very flexible puppet module to install and use the composer PHP dependency manager.
Fixes #102
Fixes #100
``` if $projects or $::execs { class {'composer::project_factory' : projects => $projects, execs => $::execs, } } ``` `$::execs` is used without first testing if it is defined. Puppet >=...
``` exec { "download_composer": command => $download_command, cwd => $tmp_path, require => $download_require, creates => "${tmp_path}/${composer_file}", logoutput => $logoutput, onlyif => "test ! -f ${target_dir}/${composer_file}", path => [ '/bin', '/usr/bin'...
Hi all! When a composer need an secure repo to install, it doesn't seems to work. I have this error: [Composer\Downloader\TransportException] The 'https://repo.magento.com/packages.json' URL required authentication. You must be using...
``` rror: Execution of '/bin/yum -d 0 -e 0 -y install php-cli' returned 1: Error: php70w-common conflicts with php-common-5.4.16-36.el7_1.x86_64 You could try using --skip-broken to work around the problem You...
I'm running into an issue with package dependencies, duplicate declarations, and declaration ordering, which is apparently a bug in Puppet itself. More specifically the issue is with your Package[$php_package] declaration...
adding tests for cache clear. Also version bump.
If we want to ensure => present or ensure => latest or ensure => absent we can't do that right now. We should add this capacity.
I upgraded to version 1.3.7 because composer wasn't getting automatically updated. After replacing the require ::composer with include ::composer in the selfupdate define I was able to get around the...