Skip to content

Instantly share code, notes, and snippets.

@selvinortiz
Created May 4, 2013 06:50
Show Gist options
  • Save selvinortiz/5516521 to your computer and use it in GitHub Desktop.
Save selvinortiz/5516521 to your computer and use it in GitHub Desktop.
DEV:Tool Reference

DEVELOPMENT TOOLS

This is a quick (somewhat) reference for tools we can use in our development workflow.

PHP

  • COMPOSER Package and Dependency management for PHP

    cd ~/Downloads

    curl -sS https://getcomposer.org/installer | php

    sudo chmod a+x composer.phar

    sudo mv ./composer.phar /usr/local/bin/composer

    cd /www/project/root

    composer install | update

  • PHPSH The interactive PHP Shell built by Facebook

    sudo apt-get install g++ make python

    sudo python setup.py build

    sudo python setup.py install

    phpsh

  • SASS The sassy CSS programming language

    Depends on ruby & rubygems

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment