dragon-code/laravel-feeds

Fast export of large datasets to feeds for marketplaces and services
3,365 36
Install
composer require dragon-code/laravel-feeds
Latest Version:1.18.0
PHP:^8.2
License:MIT
Last Updated:Sep 11, 2026
Links: GitHub  ·  Packagist
Maintainer: Helldar

📃 Laravel Feeds

Stable Version Total Downloads License

Laravel Feeds is an easy and fast way to export large amounts of data into feeds for marketplaces and other consumers.

🌟 Features

  • Chunked queries to the database
  • Draft mode during processing
  • Easy property mapping
  • Custom Eloquent models for feed registrations
  • Generate feeds, sitemaps, and more

Installation

You can install the Laravel Feeds package via Composer:

composer require dragon-code/laravel-feeds

You should publish the migration and the config/feeds.php file with:

php artisan vendor:publish --tag="feeds"

[!WARNING]

Before running migrations, verify the database connection settings in config/feeds.php.

Now you can run migrations and proceed to create feeds.

Basic Usage

To create a feed class, use the make:feed console command:

php artisan make:feed User -t

As a result of executing the console command, the files app/Feeds/UserFeed.php and app/Feeds/Items/UserFeedItem.php will be created.

Check the operation/migration file that was created for you and run the console command:

# For Laravel Deploy Operations
php artisan operations

# For Laravel Migrations
php artisan migrate

To generate all active feeds, use the console command:

php artisan feed:generate

Documentation

Guide Description
Getting Started Package overview and first steps
Installation Installation, publishing, and migrations
Create Feeds Feed, item, and info classes
Generation Commands, queues, and scheduling
Supported Formats XML, JSON, JSON Lines, CSV, and RSS
Recipes Sitemap, Instagram, Yandex, and RSS examples

The documentation site includes version and language selectors.

License

This package is licensed under the MIT License.

Related Packages

doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444
laravel/serializable-closure

Laravel Serializable Closure provides an easy and secure way to serialize closur...

404,034,618 608
nunomaduro/collision

Cli error handling for console/command-line PHP applications.

384,821,166 4,658