Is there a portable version of PHPUnit that I can bundle with my web app? I want to be able to use phpunit on any server while avoiding the issues of using PEAR (version conflicts, breaking other hosted apps, etc.).
|
Portable phpunit (taken from https://github.com/sebastianbergmann/phpunit "Using PHPUnit From a Git Checkout" ) For phpunit 3.5:
and then put every single of those folders into your include path. It will not work if you leave out any one of those packages. If you don't want to always have them in the include path here is a phpunit.sh executable phpunit.sh
|
|||||||||||||
|
|
The answer above missed the Symfony/Yaml package. Moreover, Symfony/Finder seemed to be needed, although not mentioned in PHPUnit's readme file. Regarding to PEAR dependency, it's only the PHPUnit's selftest that tends to need it. At least I have managed to run the whole test suite of Zend Framework 2 without problems. And I hadn't PEAR installed. Here's the installer for PHPUnit Git checkout that I have made https://github.com/kblomqvist/gitinstall-phpunit. |
|||
|
|
include_pathto it. – zerkms Jan 26 '11 at 4:06