Getting Started

COMPATIBILITY PHP

EasyFeed requires PHP >= 5.6.

Installation

To install run the composer command:

composer require obydul/easyfeed

Laravel Versions Prior to 5.5

For Laravel 5.5 and above this package supports Laravel Auto-Discovery and will be discovered automatically.

For Laravel versions prior to 5.5 follow next guide:

In your config/app.php add following:

'providers' => [
    ...
     Obydul\EasyFeed\EasyFeedServiceProvider::class, // Add this line
[,

'aliases' => [
    ...
    'FeedRead' => Obydul\EasyFeed\Facades\FeedRead::class, // Add this line
],