Advertisement
sdpagent

Ubuntu 12.04 - PHPUnit installation script

Jun 7th, 2013
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.42 KB | None | 0 0
  1. # Ubuntu 12.04 LTS phpunit installation script
  2. sudo apt-get install phpunit
  3. sudo pear upgrade pear
  4.  
  5. #Install PHPUnit Dependencies
  6. sudo pear channel-discover pear.phpunit.de
  7. sudo pear channel-discover components.ez.no
  8. sudo pear channel-discover pear.symfony.com
  9. sudo pear install --alldeps phpunit/PHPUnit
  10. sudo pear install --alldeps PhpDocumentor
  11.  
  12. # Output version of phpunit to make sure it works
  13. phpunit --version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement