通过 PEAR 安装 phpunit 后如何获取 phpunit.bat?

How can I get a phpunit.bat after install phpunit via PEAR?(通过 PEAR 安装 phpunit 后如何获取 phpunit.bat?)
本文介绍了通过 PEAR 安装 phpunit 后如何获取 phpunit.bat?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个 phpunit.bat 来配置我的 NetBeans IDE.

I need a phpunit.bat to configure my NetBeans IDE.

我正在使用 wamp,我只是使用这些说明通过 pear 安装 phpunit:

I'm using wamp, and I just install phpunit via pear using these instructions:

在开始使用 PEAR 之前,通过从 http://pear.php 下载最后一个 go-pear 进行更新.net/go-pear.phar 并保存到:C:wampinphpphp5.3.3PEAR

Before start using PEAR, Update by downloading last go-pear from http://pear.php.net/go-pear.phar and save it into: C:wampinphpphp5.3.3PEAR

然后:

cd C:wampinphpphp5.3.0>
php -d phar.require_hash=0 PEAR/go-pear.phar
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit

之后我找不到任何 phpunit.bat 或 phpunit.php

After do that I can't find any phpunit.bat or phpunit.php

通过 PEAR 安装 phpunit 后如何获取 phpunit.bat(或任何 CLI)?

How can I get a phpunit.bat (or any CLI) after install phpunit via PEAR?

推荐答案

类型:

pear config-show

查找 PEAR 可执行文件目录

你的 phpunit.bat 会在那里.

如果不是:

pear install --alldeps --force phpunit/phpunit

再看一遍.

这篇关于通过 PEAR 安装 phpunit 后如何获取 phpunit.bat?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)