Travis CI: Building a PHP project

2014 年 9 月 10 日7730

Building a PHP project

What This Guide Covers

This guide covers build environment and configuration topics specific to PHP projects. Please make sure to read our Getting Started and general build configuration guides first.

Choosing PHP versions to test against

PHP VM images on travis-ci.org provide several PHP versions including XDebug as well as PHPUnit. Travis CI uses phpenv to manage the different PHP versions installed on the VM. A minimalistic .travis.yml file would look like this:

language: php



php:



- 5.5



- 5.4



- hhvm



This will make Travis CI run your tests using

phpunit



by default against the latest 5.4.x and 5.5.x releases, and the latest release of HHVM. 5.4 and 5.5 are aliases for "the most recent x.y.z release" of any given line. Note that "most recent" means "as provided by the Travis CI maintainers", not necessarily the very latest official php.net release. For a full listing of the supported versions see About Travis CI Environment.

Also note that specifying exact versions like 5.3.8 is discouraged as your .travis.yml file may become out of date and break your build when we update PHP versions on Travis CI.

For example, see travis-ci-php-example .travis.yml.

Default Test Script

PHPUnit

By default Travis CI will run your tests using

phpunit



for every PHP version you specify.

If your project uses something other than PHPUnit, you can override our default test command to be anything you want.

Working with atoum

Instead of PHPunit, you can also use atoum to test your projects. For example:

before_script: wget http://http://www.zjjv.com///nightly/mageekguy.atoum.phar



script: php mageekguy.atoum.phar



Dependency Management (a.k.a. vendoring)

Before Travis CI can run your test suite, it may be necessary to pull down your project dependencies. It can be done using a PHP script, a shell script or anything you need. Define one or more commands you want Travis CI to use with the install option in your .travis.yml, for example:

install: php vendor/vendors.php



or, if you need to run multiple commands sequentially:

install:



- ./bin/ci/install_dependencies.sh



- php vendor/vendors.php



Even though installed dependencies will be wiped out between builds (VMs we run tests in are snapshotted), please be reasonable about the amount of time and network bandwidth it takes to install them.

Testing Against Multiple Versions of Dependencies (e.g. Symfony)

If you need to test against multiple versions of, say, Symfony, you can instruct Travis CI to do multiple runs with different sets or values of environment variables. Use env key in your .travis.yml file, for example:

env:



- SYMFONY_VERSION="2.0.*" DB=mysql



- SYMFONY_VERSION="dev-master" DB=mysql



and then use ENV variable values in any later script like your dependencies installation scripts, test cases or test script parameter values.

Here is an example using the above ENV variable to modify the dependencies when using the composer package manager to run the tests against the 2 different versions of Symfony as defined above.

install:



- composer require symfony/framework-bundle:${SYMFONY_VERSION}



Here we use DB variable value to pick phpunit configuration file:

script: phpunit --configuration $DB.phpunit.xml



The same technique is often used to test projects against multiple databases and so on.

To see real world examples, see:

Installing PEAR packages

If your dependencies include PEAR packages, the Travis CI PHP environment has the Pyrus and pear commands available:

pyrus install http://http://www.zjjv.com///latest.tar.gz



pear install pear/PHP_CodeSniffer



After install you should refresh your path

phpenv rehash



For example, if you want to use phpcs, you should execute:

pyrus install pear/PHP_CodeSniffer



phpenv rehash



Then you can use phpcs like the phpunit command

Installing Composer packages

You can also install Composer packages into the Travis CI PHP environment. The composer

command comes pre-installed, use the following:

composer install



To ensure that everything works, use http(s) URLs on Packagist and not git URLs.

PHP installation

You'll find the default configure options used to build the different PHP versions used on Travis CI here, it will give you an overview of Travis CI's PHP installation.

Please note the following differences among the different PHP versions available on Travis CI:

For unmaintained PHP versions we provide (5.2.x, 5.3.3), OpenSSL extension is disabled because of compilation problems with OpenSSL 1.0. Recent PHP 5.3.x and 5.4.x releases we provision do have OpenSSL extension support.

Pyrus is not available for PHP 5.2.x.

Different SAPIs:

Custom PHP configuration

The easiest way to customize PHP's configuration is to use phpenv config-add to add a custom config file with your configuration directives:

before_script: phpenv config-add myconfig.ini



And myconfig.ini:

extension = "mongo.so"



date.timezone = "Europe/Paris"



default_socket_timeout = 120



# some other configuration directives...



You can also use this one line command:

echo 'date.timezone = "Europe/Paris"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini



PHP extensions

Core extensions

See the default configure options to get an overview of the core extensions enabled.

Preinstalled PHP extensions

There are some common PHP extensions preinstalled with PECL on Travis CI:

Please note that these extensions are not enabled by default with the exception of xdebug.

You need to enable them by adding an extension="<extension>.so" line to a PHP configuration file (for the current PHP version).

The easiest way to do this is by using phpenv to add a custom config file which enables and eventually configure the extension:

before_script: phpenv config-add myconfig.ini



And myconfig.ini:

extension="mongo.so"



# some other mongo specific configuration directives



# or general custom PHP settings...



You can also use this one line command:

echo "extension = <extension>.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini



To disable xdebug, add this to your configuration:

before_script:



- phpenv config-rm xdebug.ini



Installing additional PHP extensions

It is possible to install custom PHP extensions into the Travis CI environment using PECL, but they have to be built against the PHP version being tested. Here is for example how the memcache extension can be installed:

pecl install <extension>



PECL will automatically enable the extension at the end of the installation. If you want to configure your extension, use the phpenv config-add command to add a custom ini configuration file in your before_script.

It is also possible to do the installation "manually", but you'll have to manually enable the extension after the installation either with phpenv config-add and a custom ini file or with this one line command:

echo "extension=<extension>.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini



See also the full script using midgard2.

If you need specific version of preinstalled extension, you need to force install specific version with the -f flag. For example:

pecl install -f mongo-1.2.12



Note on pecl install

Note that pecl install can fail if the requested version of the package is already installed.

Chef Cookbooks for PHP

If you want to learn all the details of how we build and provision multiple PHP installations, see our php, phpenv and php-build Chef cookbooks.

Apache + PHP

Currently Travis CI does not support mod_php for apache, but you can configure php-fpm for your integration tests.

In your .travis.yml:

before_script:



- sudo apt-get install apache2 libapache2-mod-fastcgi



# enable php-fpm



- sudo cp ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf.default ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf



- sudo a2enmod rewrite actions fastcgi alias



- echo "cgi.fix_pathinfo = 1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini



- ~/.phpenv/versions/$(phpenv version-name)/sbin/php-fpm



# configure apache virtual hosts



- sudo cp -f build/travis-ci-apache /etc/apache2/sites-available/default



- sudo sed -e "s?%TRAVIS_BUILD_DIR%?$(pwd)?g" --in-place /etc/apache2/sites-available/default



- sudo service apache2 restart



You will need to have build/travis-ci-apache file that will configure your virtual host as usual, the important part for php-fpm is this:

<VirtualHost *:80>



# [...]







DocumentRoot %TRAVIS_BUILD_DIR%







<Directory "%TRAVIS_BUILD_DIR%">



Options FollowSymLinks MultiViews ExecCGI



AllowOverride All



Order deny,allow



Allow from all



</Directory>







# Wire up Apache to use Travis CI's php-fpm.



<IfModule mod_fastcgi.c>



AddHandler php5-fcgi .php



Action php5-fcgi /php5-fcgi



Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi



FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -host 127.0.0.1:9000 -pass-header Authorization



</IfModule>







# [...]



</VirtualHost>



Build Matrix

For PHP projects, env and php can be given as arrays

to construct a build matrix.

Examples

Drupal

0 0