lib/fulmar/infrastructure/service/composer_service.rb in fulmar-1.2.1 vs lib/fulmar/infrastructure/service/composer_service.rb in fulmar-1.3.0

- old
+ new

@@ -6,11 +6,11 @@ def initialize(shell, custom_path = '/usr/bin/env composer') @local_shell = shell @path = custom_path end - def execute(command, arguments = []) - @local_shell.run "#{@path} #{command} #{arguments.join(' ')} > /dev/null" + def execute(command, arguments = %w(--no-dev -q)) + @local_shell.run "#{@path} #{command} #{arguments.join(' ')}" end end end end end