#
# Cookbook:: irrigate-php
# Recipe:: default
#
# Copyright:: 2016, The Orchard
#
# All rights reserved - Do Not Redistribute

include_recipe 'irrigate-php'
include_recipe 'irrigate-php::deploy_qa_user'
include_recipe 'irrigate-php::composer'

if platform_family?('rhel')
  if node['platform_version'].start_with?('7')
    packages = %w(
      php56-php-pecl-apcu
      php56-php-pecl-yaml
    )

    packages.each do |name|
      package name
    end

  end
end
