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-11-19 03:09:51 |
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 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.
Add wobeto/twitter to your composer.json file:
"require": {
"wobeto/twitter": "0.5.0"
}
Use composer to install this package.
$ composer update
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