#!/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); }