highsolutions / feed
A RSS2 feed generator for Laravel.
Requires
- php: >=5.5.9
- illuminate/support: 5.*|^6.0|^7.0|^8.0
Requires (Dev)
- orchestra/testbench: 3.*|4.*|5.*|6.*
- phpunit/phpunit: ^4.8|5.*|6.*|7.*|8.*
README
Laravel-Feed
A simple feed generator for Laravel 5/6.x/7.x/8.x with support for RSS 2.
Installation
Run the following command and provide the latest stable version (^4.0):
composer require highsolutions/feed
or add the following to your composer.json
file:
"highsolutions/feed": "^4.*"
This package uses Laravel 5.5 Package Auto-Discovery.
For previous versions of Laravel, you need to update config/app.php
by adding an entry for the service provider:
HighSolutions\Feed\FeedServiceProvider::class,
and add class alias:
'Feed' => HighSolutions\Feed\Feed::class,
Publish package views (OPTIONAL):
php artisan vendor:publish --provider="HighSolutions\Feed\FeedServiceProvider"
Examples
How to generate basic feed (with optional caching)
How to generate multiple feeds
How to add images to your feed
How to use custom view for your feed
How to use custom content-type for your feed
and more in the Wiki
Credits
This package was originally created by RoumenDamianoff and is available here: laravel-feed.
Currently is developed by HighSolutions, software house from Poland in love in Laravel.