-
Notifications
You must be signed in to change notification settings - Fork 3
/
metadata.rb
26 lines (23 loc) · 1.01 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
name "zend-server"
maintainer "ContinuousPHP"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and configures zend server"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.1.1"
recipe "zend-server", "Includes the server recipe to configure the base server"
recipe "zend-server::xdebug", "Installs the xdebug pecl package"
recipe "zend-server::phing", "Installs the phing pear package"
recipe "zend-server::phpdocumentor", "Installs the phpdoc pear package"
recipe "zend-server::phpunit", "Installs the phpunit pear package"
recipe "zend-server::composer", "Installs composer executable"
%w{ debian ubuntu }.each do |os|
supports os
end
depends "apt"
depends "build-essential"
depends "conf"
attribute "zend_server/php_version",
:display_name => "PHP version",
:description => "version of php to install (5.3 or 5.4)",
:default => "5.4"