php_install

May 23, 2024 ยท View on GitHub

By default, installs the php packages appropriate for your platform and adds a php.ini to the default location for that platform.

Actions

  • :install: Installs PHP packages (default)

Properties

NameTypeDefaultDescription
packagesStringPlatform-specific - see libraries/helpers.rbPackages to install
options[String, Array]Installation options (see Chef package resource)
conf_dirStringPlatform-specific - see libraries/helpers.rbDirectory to place the php.ini file under
ini_templateStringphp.ini.erb (see templates/<distro>/php.ini.rb)Template to use to create the php.ini file
ini_cookbookStringphp (this cookbook)Cookbook where the template is located
directivesHash{}Directive-value pairs to add to the php.ini file
ext_dirStringPlatform-specific - see libraries/helpers.rbDirectory in which the loadable extensions (modules) reside

Examples

Install the default packages for your platform

php_install 'php' do
  action :install
end

See test/cookbooks/test/recipes/community.rb for an example for installing from a community repository.