Created
November 19, 2012 19:50
-
-
Save jamierumbelow/4113366 to your computer and use it in GitHub Desktop.
Installing PHPUnit via Composer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"phpunit/phpunit": "3.7.*" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ php composer.phar update | |
blah | |
$ vendor/bin/phpunit --version | |
PHPUnit Version 3.7.8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! Finally I can stop trying to get my head around PEAR!