2017 © Pedro Peláez
 

library tweetcompare

image

kcahir/tweetcompare

  • Sunday, April 20, 2014
  • by kcahir
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Tweetcompare

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)

Installation

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)

Assets

Run php artisan asset:publish kcahir/tweetcompare, (*9)

Configuration

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)

Final Step

Go to app/routes.php and remove the default route shown., (*11)

Now navigate to the public/ directory in your browser., (*12)

The Versions