当前位置:  开发笔记 > 编程语言 > 正文

如何在Mac OS X 10.5上不使用PEAR的情况下安装PHPUnit?

如何解决《如何在MacOSX10.5上不使用PEAR的情况下安装PHPUnit?》经验,为你挑选了1个好方法。

我在安装PEAR时遇到问题,但我真的只想安装PHPUnit.有没有人有这方面的经验?



1> tobius..:
通过GIT安装

您可以按照Git自述文件中的说明操作:https://github.com/sebastianbergmann/phpunit/

"git"文件并将它们放在您的主目录中

cd ~ && mkdir phpunit && cd phpunit
git clone git://github.com/sebastianbergmann/phpunit.git
git clone git://github.com/sebastianbergmann/dbunit.git
git clone git://github.com/sebastianbergmann/php-file-iterator.git
git clone git://github.com/sebastianbergmann/php-text-template.git
git clone git://github.com/sebastianbergmann/php-code-coverage.git
git clone git://github.com/sebastianbergmann/php-token-stream.git
git clone git://github.com/sebastianbergmann/php-timer.git
git clone git://github.com/sebastianbergmann/phpunit-mock-objects.git
git clone git://github.com/sebastianbergmann/phpunit-selenium.git

设置个人二进制路径

cd ~ && mkdir bin
vi ~/.profile
>> export PATH=$HOME/bin:$PATH
>> :wq
source ~/.profile

创建可执行文件

touch ~/bin/phpunit
chmod 755 ~/bin/phpunit

写可执行文件

#!/usr/bin/env php


测试可执行文件

which phpunit
phpunit --version

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有