`
hcw1314520
  • 浏览: 7691 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
最近访客 更多访客>>
社区版块
存档分类
最新评论

Installing PHPUnit

    博客分类:
  • PHP
PHP 
阅读更多
个人技术博客:http://www.cooli.cc/

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.

Note
PHPUnit 3.4 requires PHP 5.1.4 (or later) but PHP 5.3.3 (or later) is highly recommended.

Xdebug 2.0.5 (or later) is required to collect and process code coverage information but Xdebug 2.1.0 (or later) is highly recommended.

The PEAR channel (pear.phpunit.de) that is used to distribute PHPUnit needs to be registered with the local PEAR environment. Furthermore, a component that PHPUnit depends upon is hosted on the Symfony Components PEAR channel (pear.symfony-project.com).

pear channel-discover pear.phpunit.de
pear channel-discover pear.symfony-project.com

This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel:

pear install phpunit/PHPUnit

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 phpunit.php 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).

Prepare the PHPUnit/Util/PHP.php script:

Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php).
分享到:
评论

相关推荐

    关于 PHP 单元测试的一本好书

    Installing PHPUnit(安装PHPUnit) - **安装过程**:详细介绍了如何在不同的操作系统上安装PHPUnit,包括Windows、Linux和MacOS等。 - **环境配置**:指导读者如何正确配置开发环境,以确保PHPUnit能够正常运行。 ...

    安装PHP-配置PHP+IIS

    - [Stack Overflow](http://stackoverflow.com/questions/6272264/windows-installing-phpunit-via-pear-installing-phpunit-via-pear) 通过上述步骤,我们可以完成PHP与IIS的安装配置,并确保其能够支持MySQL...

    Laravel 5.x Cookbook (Packt 2016)

    Chapter 1: Setting Up and Installing Laravel 1 Introduction 1 Setting up Homestead 1 Setting composer and PHP on your local machine for faster Workflows 4 Setting up your first application in ...

Global site tag (gtag.js) - Google Analytics