fernandowobeto / laravel-twitter by fernandowobeto

Laravel 4 Service Provider to interact with twitter account, like return a collection of the most recent Tweets posted by the user, post Tweets, delete status and get user profile.
132
1
4
Package Data
Maintainer Username: fernandowobeto
Maintainer Contact: fernandowobeto@gmail.com (Fernando Wobeto)
Package Create Date: 2014-04-29
Package Last Update: 2014-09-16
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:00:30
Package Statistics
Total Downloads: 132
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 4
Total Forks: 1
Total Open Issues: 0

laravel-twitter

Laravel 4 Service Provider to interact with twitter account, like return a collection of the most recent Tweets posted by user, post Tweets, delete and get user profile.

Latest Stable Version Total Downloads Latest Unstable Version License Code Climate

Installation

Add wobeto/twitter to your composer.json file:

"require": {
  "wobeto/twitter": "0.5.0"
}

Use composer to install this package.

$ composer update

Registering the Package

Register the service provider within the providers array found in app/config/app.php:

'providers' => array(
	// ...
	
	'Wobeto\Twitter\TwitterServiceProvider'
)

Add an alias within the aliases array found in app/config/app.php:

'aliases' => array(
	// ...
	
	'Twitter' => 'Wobeto\Twitter\Facade\Twitter',
)

Copy Config/twitter.php file to app/config/ and enter your data configurations