LaravelPackages.net
Acme Inc.
Toggle sidebar
wobeto/twitter

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.

135
1
0.6.1
About wobeto/twitter

wobeto/twitter is a Laravel package for 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.. It currently has 1 GitHub stars and 135 downloads on Packagist (latest version 0.6.1). Install it with composer require wobeto/twitter. Discover more Laravel packages by wobeto or browse all Laravel packages to compare alternatives.

Last updated

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

Comments