Installs and configures additional PHP modules and PEAR packages that are commonly used but not part of the Opscode Cookbooks. This includes additional tools that are used during development for quality assurance and testing.
This cookbook now adds support for CentOS 6. and correct package names. Use this chef-php-extra::default instead of php::default to ensure compatibility with CentOS 6.*.*
Chef 0.10.12 or higher required (for Chef environment use).
- Debian, Ubuntu
- CentOS, Red Hat, Fedora
The following Opscode cookbooks are dependencies:
- git
- yum
- apt
- php
['xdebug']['cli_color']
= Enable cli colour output, defaults to1
.['xdebug']['scream']
= Enable removal for of@
error suppression functionality, defaults to0
.['xdebug']['remote_enable']
= Defaults toOn
.['xdebug']['remote_autostart']
= Defaults to0
.['xdebug']['remote_mode']
= Defaults toreq
.['xdebug']['remote_connect_back']
= Defaults to1
.['xdebug']['idekey']
= Defaults tomacgdbp
.['xdebug']['file_link_format']
= Defaults totxmt://open?url=file://%f&line=%1
.['xdebug']['profiler_enable_trigger']
= Defaults to0
.['xdebug']['profiler_enable']
= Defaults to0
.['xdebug']['profiler_output_dir']
= Defaults to/tmp/cachegrind
.['php']['ius']
= Defaults to5.3
.
Provides install_composer
and install_packages
actions which install composer in the directory provided, and installs the project's dependencies.
chef_php_extra_composer "/path/to/project/dir" do
action [:install_composer, :install_packages]
end
Install the additional PHP modules not part of the Opscode cookbook.
Installs and configures a standard set of tools used in development of PHP projects. This will install the standard set of static code analysis tools for PHP as well as testing and quality assurance tools.
Installs the php5 package. The version can be controlled on yum based systems using the ['php']['ius']
value. Possible vaulues are '5.4', '5.3' or false (to install the latest php package from the default repository).
Installs the php5_dev module that is required by xdebug.
Installs the php5_gd module adding support for CentOS 6.* and correct package selection.
Installs the php5_imagick module used for image processing.
Install the php5_mcrypt module that is commonly used but not part of the Opscode PHP cookbook
Installs php5_soap as it is a commonly used module that is not part of the Opscode PHP cookbook.
Installs php5_xml as it is a commonly used module that is not part of the Opscode PHP cookbook.
Upgrades PEAR using PEAR.
Installs PHP_CodeSniffer using PEAR with the standard sniffs PEAR and Zend.
Installs PHP_Depend with PEAR so that it can be used in Jenkins.
Installs PHP_PMD with PEAR so that it can be used in Jenkins.
Installs PhpDocumentor so that you can generate API documentation for you code.
Installs the php redis extension configure and make install from source after a checkout from GitHub from the master branch
Installs vfsStream which allows you to create mock file system resources for unit testing.
Installs and configures xdebug so that it provides more details stack traces for any error output. xdebug is configured to connect back to a debugger at the host machine initiating the request.
Installs the latest build of Zend Framework 1.x as system wide resource with PEAR.
Installs the php twig extension configure and make install from source after a checkout from GitHub from the master branch
You can select any of the recipes to be executed directly referencing them from this cookbook.
chef-php-extra::xdebug
If you are setting up a development environment you can use the single recipe that will add all the standard tools that may be used during development of projects
chef-php-extra::development
Author:: Alistair Stead ([email protected]) Author:: Marcello Duarte ([email protected]) Author:: Ben Longden ([email protected])
Copyright 2012, Inviqa
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.