despark/laravel-social-feeder

Social feeder for laravel. With this you can get feed from facebook page, twitter account or instragram

Maintainers

👁 ymihaylov

Package info

github.com/despark/laravel-social-feeder

pkg:composer/despark/laravel-social-feeder

Statistics

Installs: 134

Dependents: 0

Suggesters: 1

Stars: 13

Open Issues: 3

v1.9 2015-02-18 12:30 UTC

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT d5ba0c70ea7213a3d59a1df0a57ed26753e32f78

  • Yavor Mihaylov <ymihaylov.woop@despark.com>

frameworktwitterfacebookfeedlaravelinstagramdesparkfeedersocial-feeder

This package is not auto-updated.

Last update: 2026-06-21 02:21:31 UTC


README

Social Feeder 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:

"despark/laravel-social-feeder": "~1.2"

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(
 ...
 'Despark\LaravelSocialFeeder\LaravelSocialFeederServiceProvider',
);

Publish the config file: php artisan config:publish despark/laravel-social-feeder

Then execute migration with the following command

php artisan migrate --package="despark/laravel-social-feeder"

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