From fb7cbd7083e96ef0d7963fda559389714043e428 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 14 Jul 2015 01:19:44 +0200 Subject: [PATCH] README --- README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a396d50 --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +LiveConding Console +=================== + +LiveConding Console provides a cli to list and play streams for livecoding.tv. + +Requirements +------------ + +* PHP >= 5.4 +* Composer (php) + +Installation +------------ + + $ git clone https://gitlab.deblan.org/deblan/livecoding-console + $ cd livecoding-console + $ composer update + +### Composer + +Composer can maybe be downloaded from your system's repositories. +Else, follow the next instructions: + +#### Download + + # With cURL + curl -sS https://getcomposer.org/installer | php + + # With Wget + wget -O - -q https://getcomposer.org/installer | php + +You can now use it with `php composer.phar [arguments]`. + +#### Executable + + mv composer.phar composer + chmod +x composer + +Use it with `./composer [arguments]`. + +#### Install + +Assuming `~/bin` exists ans is in `$PATH`. + + mv composer ~/bin + +#### Dependencies Installation (from `composer.lock`) + + composer install + +#### Dependencies Update (will change `composer.lock`) + + composer update