How do you install PHPUnit without using PEAR on Mac OS X 10.5? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:59:18Zhttp://stackoverflow.com/feeds/question/628986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/628986/how-do-you-install-phpunit-without-using-pear-on-mac-os-x-10-51How do you install PHPUnit without using PEAR on Mac OS X 10.5?Andrew2009-03-10T05:03:32Z2009-08-18T18:31:15Z
<p>I am having trouble installing PEAR, but I really only want to install PHPUnit. Does anyone have experience doing this?</p>
http://stackoverflow.com/questions/628986/how-do-you-install-phpunit-without-using-pear-on-mac-os-x-10-5/629358#6293582Answer by Ciaran McNulty for How do you install PHPUnit without using PEAR on Mac OS X 10.5?Ciaran McNulty2009-03-10T08:55:58Z2009-03-10T08:55:58Z<p>From the <a href="http://www.phpunit.de/manual/current/en/installation.html" rel="nofollow">PHPUnit installation guide</a>:</p>
<blockquote>
<p>Although using the PEAR Installer is the only supported way to install PHPUnit, you can install PHPUnit manually. For manual installation, do the following:</p>
</blockquote>
<ol>
<li>Download a release archive from <a href="http://pear.phpunit.de/get/" rel="nofollow">http://pear.phpunit.de/get/</a> and extract it to a directory that is listed in the include_path of your php.ini configuration file.</li>
<li>Prepare the phpunit script:
<ol>
<li>Rename the phpunit.php script to phpunit.</li>
<li>Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php).</li>
<li>Copy it to a directory that is in your path and make it executable (chmod +x phpunit). </li>
</ol></li>
<li>Prepare the PHPUnit/Util/Fileloader.php script:
<ol>
<li>Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php). </li>
</ol></li>
</ol>
http://stackoverflow.com/questions/628986/how-do-you-install-phpunit-without-using-pear-on-mac-os-x-10-5/857756#8577560Answer by Sabine for How do you install PHPUnit without using PEAR on Mac OS X 10.5?Sabine2009-05-13T12:47:31Z2009-05-13T12:47:31Z<p>Andrew, I am wrestling with installing PHPUnit at the moment. Found out that it helps a lot if restart your Webserver after updating the include_path in php.ini.
Now looking for the exact location of the PHP command line interpreter (that is how I got here). I'll keep you informed.</p>
<p>Sabine</p>
http://stackoverflow.com/questions/628986/how-do-you-install-phpunit-without-using-pear-on-mac-os-x-10-5/1295683#12956830Answer by Erik for How do you install PHPUnit without using PEAR on Mac OS X 10.5?Erik2009-08-18T18:31:15Z2009-08-18T18:31:15Z<p>I just installed it today. My steps were as follows:</p>
<ul>
<li>download from /get/ - I used 3.3.9.tgz</li>
<li>extract all files into the pear directory (pear-phpunit, PHPUnit/, etc...)</li>
<li>change the @php_bin@ to point to my php binary (/usr/bin/php) in the files mentioned above</li>
<li>create a symlink from pear-phpunit to /usr/local/bin/phpunit ( <code>ln -s /usr/share/php/pear/pear-phpunit /usr/local/bin/phpunit</code> )</li>
</ul>