Get data from Twitter

1.0.2 2018-04-20 14:04 UTC

This package is auto-updated.

Last update: 2024-04-29 03:57:27 UTC


README

Example of use

Install: composer require rafael.paulino/twitter

<?php
require_once 'vendor/autoload.php';

use Twitter\CountFollowers;

$twitter = new CountFollowers('Your Account Name');
$total = $twitter->getTotal();
var_dump($total);
echo $total['total'];