Skip to content

linkthrow/laravel-social-aggregator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Social Aggregator for Laravel

Social Aggregator is interface to social APIs. With this package you can get latest posts/tweets/photos from Facebook, Twitter, Instagram and save it to database to show it in your application.

Installation

Open composer.json file of your project and add the following to the require array:

"linkthrow/laravel-social-aggregator": "dev-master"

Now run composer update to install the new requirement.

Once it's installed, you need to register the service provider in app/config/app.php in the providers array:

'providers' => array(
  ...
  'LinkThrow\LaravelSocialAggregator\LaravelSocialAggregatorServiceProvider',
);

This will create new table social_posts. In this table package store the posts from feeds.