chef-composer icon indicating copy to clipboard operation
chef-composer copied to clipboard

a opscode chef recipe for composer http://getcomposer.org

Results 3 chef-composer issues
Sort by recently updated
recently updated
newest added

The composer_project resource defines a [COMPOSER_HOME environment variable](https://github.com/zircote/chef-composer/blob/master/providers/project.rb#L27) in the home directory of the composer user. However this is hardcoded: ``` ruby environment({"COMPOSER_HOME" => "/home/#{new_resource.run_as}/.composer"}) ``` This means that if...

Hi, in project install line 25 you do a check ``` not_if "test -f #{new_resource.project_dir}/composer.lock" ``` Is this really needed? With this check you don't allow to run the install...