| Prev | Next |
PHPUnit should be installed using the PEAR Installer. This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0.
The PEAR channel (pear.phpunit.de) that
is used to distribute PHPUnit needs to be registered with the local PEAR
environment:
pear channel-discover pear.phpunit.deThis has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel:
pear install phpunit/PHPUnit
Previous installations of the PHPUnit and
PHPUnit2 packages from the pear.php.net
channel have to be uninstalled.
After the installation you can find the PHPUnit source files inside your
local PEAR directory; the path is usually
/usr/lib/php/PHPUnit.
Although using the PEAR Installer is the only supported way to install PHPUnit, you can install PHPUnit manually. For manual installation, do the following:
Download a release archive from
http://pear.phpunit.de/get/
and extract it to a directory that is listed in the
include_path of your php.ini
configuration file.
Prepare the phpunit script:
Rename the pear-phpunit script to
phpunit.
Replace the @php_bin@ string in it with the
path to your PHP command-line interpreter (usually
/usr/bin/php).
Copy it to a directory that is in your PATH
and make it executable (chmod +x phpunit).
| Prev | Next |
Copyright © 2005-2010 Sebastian Bergmann.