, (*1)
A independent Twitter Client library. This library depends from RSSClient, (*2)
Installation
With Composer
It is best installed it through packagist
by including
desarrolla2/twitter-client
in your project composer.json require:, (*3)
``` json
"require": {
// ...
"desarrolla2/twitter-client": "dev-master"
}, (*4)
### Without Composer
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.
## Usage
### Without Cache
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
<?php
use Desarrolla2\TwitterClient\TwitterClient;
$client = new TwitterClient();
$client->setScreenName('desarrolla2');
$twits = $client->fetch(10);
With Cache
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)., (*5)
``` php
<?php, (*6)
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);
```, (*7)
You can see how to configure desarrolla2/cache in its [README] (https://github.com/desarrolla2/Cache), (*8)
You can contact with me on twitter., (*9)