desarrolla2/twitter-client
Independent PHP Twitter client for fetching a user’s tweets via RSS. Supports simple usage or optional caching through desarrolla2/cache and RSSClient. Install via Composer, set a screen name, and fetch recent tweets quickly.
A independent Twitter Client library. This library depends from RSSClient
It is best installed it through packagist
by including
desarrolla2/twitter-client in your project composer.json require:
"require": {
// ...
"desarrolla2/twitter-client": "dev-master"
}
You can also download it from [Github] (https://github.com/desarrolla2/TwitterClient), but no autoloader is provided so you'll need to register it with your own PSR-0 compatible autoloader.
This example does not use any cache, so it probably will be too slow to be used on a website, you should implement your system cache, or use the cache system described below
<?php
use Desarrolla2\TwitterClient\TwitterClient;
$client = new TwitterClient();
$client->setScreenName('desarrolla2');
$twits = $client->fetch(10);
This example uses the cache implemented by Seller desarrolla2/cache you must select the adapter depending on your needs, you can find all the info in the repository [Github] (https://github.com/desarrolla2/Cache).
<?php
use Desarrolla2\TwitterClient\TwitterClient;
use Desarrolla2\RSSClient\RSSCacheClient;
use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\NotCache;
// It is important that you select and configure your cache adapter
$rssCacheClient = new RSSCacheClient(new Cache(new File('/tmp')));
$client = new TwitterClient(rssCacheClient);
$client->setScreenName('desarrolla2');
$twits = $client->fetch(10);
You can see how to configure desarrolla2/cache in its [README] (https://github.com/desarrolla2/Cache)
You can contact with me on twitter.
How can I help you explore Laravel packages today?