--- /dev/null
+Tweeper is a web scraper to convert popular social media sites to RSS (e.g.
+Twitter.com, Instagram.com), see
+
+For the source code and more details see:
+
+ https://git.ao2.it/tweeper.git
+
+
+This project shows an example of using tweeper via composer:
+
+ $ composer install
+ $ ./tweeper_test
+
+After "composer install" a more complete example app is also available in the
+"vendor/bin" directory:
+
+ $ ./vendor/bin/tweeper https://twitter.com/ao2it
+ $ ./vendor/bin/tweeper https://www.instagram.com/comunedinapoli/
--- /dev/null
+{
+ "name": "ao2/tweeper_composer_test",
+ "require": {
+ "ao2/tweeper": "dev-master"
+ },
+ "bin": ["tweeper_test"]
+}
--- /dev/null
+#!/usr/bin/env php
+<?php
+
+require __DIR__ . '/vendor/autoload.php';
+
+use Tweeper\Tweeper;
+
+$tweeper = new Tweeper();
+$output = $tweeper->tweep('https://twitter.com/ao2it');
+if (is_null($output)) {
+ exit(1);
+}
+
+$output = $tweeper->tweep('https://www.instagram.com/comunedinapoli/');
+if (is_null($output)) {
+ exit(1);
+}