Archiving a bunch of old stuff

This commit is contained in:
Dan Buch
2015-06-22 13:15:42 -05:00
parent a6ec1d560e
commit bd1abd8734
395 changed files with 1 additions and 76 deletions

19
oldstuff/sylvilagus/php/setup Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -x
if [ ! -d php-amqplib/.git ] ; then
git clone git://github.com/videlalvaro/php-amqplib.git
else
pushd php-amqplib
git fetch
get reset --hard origin/master
popd
fi
pushd php-amqplib
if [ ! -f composer.phar ] ; then
curl -s https://getcomposer.org/installer | php
fi
php composer.phar install
popd