Run test in phpunit with specific php version

戏子无情 提交于 2019-12-01 04:08:06
$ /Applications/MAMP/bin/php/php5.2.17/bin/php path/to/phpunit.phar

Create a script e.g. phpunit-using-5.2

#!/bin/sh
set -e

/Applications/MAMP/bin/php/php5.2.17/bin/php path/to/phpunit.phar "$@"

Now you can run it:

$ phpunit-using-5.2

Or you can create a bash alias too.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!