forked from sous-chefs/php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
31 lines (28 loc) · 1.29 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name 'php'
maintainer 'Chef Software, Inc.'
maintainer_email '[email protected]'
license 'Apache 2.0'
description 'Installs and maintains php and php modules'
version '1.7.2'
source_url 'https://github.com/chef-cookbooks/php' if respond_to?(:source_url)
issues_url 'https://github.com/chef-cookbooks/php/issues' if respond_to?(:issues_url)
depends 'build-essential'
depends 'xml'
depends 'mysql'
depends 'yum-epel'
%w(amazon centos debian fedora oracle redhat scientific suse ubuntu).each do |os|
supports os
end
recipe 'php', 'Installs php'
recipe 'php::package', 'Installs php using packages.'
recipe 'php::source', 'Installs php from source.'
recipe 'php::module_apc', 'Install the php5-apc package'
recipe 'php::module_curl', 'Install the php5-curl package'
recipe 'php::module_fileinfo', 'Install the php5-fileinfo package'
recipe 'php::module_fpdf', 'Install the php-fpdf package'
recipe 'php::module_gd', 'Install the php5-gd package'
recipe 'php::module_ldap', 'Install the php5-ldap package'
recipe 'php::module_memcache', 'Install the php5-memcache package'
recipe 'php::module_mysql', 'Install the php5-mysql package'
recipe 'php::module_pgsql', 'Install the php5-pgsql packag'
recipe 'php::module_sqlite3', 'Install the php5-sqlite3 package'