dev-master
9999999-dev
The Requires
- guzzle/guzzle >=3.0, <3.4
- illuminate/support 4.x
- php >=5.3.0
- thujohn/twitter dev-master
- toin0u/geotools-laravel 0.2.*@dev
by kieran cahir
Wallogit.com
2017 © Pedro Peláez
Compare user tweet statistics in Laravel 4, (*1)
You need to create a Twitter application and create your access token in the developer console., (*2)
You can start with composer create-project laravel/laravel --prefer-dist to install laravel., (*3)
Add kcahir/tweetcompare to composer.json., (*4)
"kcahir/tweetcompare": "dev-master"
Run composer update to pull down the latest version of Tweetcompare., (*5)
Now open up app/config/app.php and add the service provider to your providers array., (*6)
'providers' => array(
'Kcahir\Tweetcompare\TweetcompareServiceProvider',
'Toin0u\Geotools\GeotoolsServiceProvider',
'Thujohn\Twitter\TwitterServiceProvider',
)
Now add the alias., (*7)
'aliases' => array(
'Twitter' => 'Thujohn\Twitter\TwitterFacade',
'Geotools' => 'Toin0u\Geotools\GeotoolsFacade',
)
Run php artisan dump-autoload, (*8)
Run php artisan asset:publish kcahir/tweetcompare, (*9)
Run php artisan config:publish thujohn/twitter and modify the config file at app/config/packages/thujohn/twitter/config.php with your own information., (*10)
Go to app/routes.php and remove the default route shown., (*11)
Now navigate to the public/ directory in your browser., (*12)