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
| #!/bin/bash | |
| pear upgrade pear | |
| ## Install Phing ####################################### | |
| pear channel-discover pear.phing.info | |
| pear install --alldeps phing/phing | |
| ## Install PHPUnit ##################################### | |
| yum install php-xml |
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
| { | |
| // The tab key will cycle through the settings when first created | |
| // Visit http://wbond.net/sublime_packages/sftp/settings for help | |
| // sftp, ftp or ftps | |
| "type": "sftp", | |
| "save_before_upload": true, | |
| "upload_on_save": false, | |
| "sync_down_on_open": false, |
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
| wget https://phantomjs.googlecode.com/files/phantomjs-1.9.1-linux-x86_64.tar.bz2 | |
| bunzip2 phantomjs-1.9.1-linux-x86_64.tar.bz2 | |
| tar xf phantomjs-1.9.1-linux-x86_64.tar | |
| mv phantomjs-1.9.1-linux-x86_64/ /opt/ | |
| ln -s /opt/phantomjs-1.9.1-linux-x86_64/ /opt/phantomjs | |
| ln -s /opt/phantomjs/bin/phantomjs /usr/local/bin/ | |
| #check what you've just done | |
| which phantomjs | |
| phantomjs --version |