Skip to content

Instantly share code, notes, and snippets.

@JonatanFlores
Forked from rcmachado/install_phpunit.sh
Created May 19, 2017 17:19
Show Gist options
  • Save JonatanFlores/38c5f3d032194629499fea5e7f127243 to your computer and use it in GitHub Desktop.
Save JonatanFlores/38c5f3d032194629499fea5e7f127243 to your computer and use it in GitHub Desktop.
Installs PHPUnit on a very old CentOS 5.3
#!/bin/bash
#
# Installs PHPUnit on a very old CentOS 5.3
#
pear upgrade --force http://pear.php.net/get/PEAR-1.8.1
pear channel-discover pear.phpunit.de
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment