Package Data | |
---|---|
Maintainer Username: | ymihaylov |
Maintainer Contact: | ymihaylov@despark.com (Yavor Mihaylov) |
Package Create Date: | 2015-02-05 |
Package Last Update: | 2015-02-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:08:01 |
Package Statistics | |
---|---|
Total Downloads: | 132 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 12 |
Total Watchers: | 12 |
Total Forks: | 7 |
Total Open Issues: | 3 |
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.
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.