PHPackages                             timothydc/laravel-lightspeed-ecom-product-feeds - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. timothydc/laravel-lightspeed-ecom-product-feeds

ActiveLibrary[API Development](/categories/api)

timothydc/laravel-lightspeed-ecom-product-feeds
===============================================

Laravel package for Lightspeed product feeds

v1.15.0(1y ago)2101MITPHPPHP ^7.4|^8.0

Since Jun 27Pushed 1y ago1 watchersCompare

[ Source](https://github.com/timothydc/laravel-lightspeed-ecom-product-feeds)[ Packagist](https://packagist.org/packages/timothydc/laravel-lightspeed-ecom-product-feeds)[ Docs](https://github.com/timothydc/laravel-lightspeed-ecom-product-feeds)[ RSS](/packages/timothydc-laravel-lightspeed-ecom-product-feeds/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (7)Versions (35)Used By (0)

Generate Lightspeed eCom Product feeds for Laravel
==================================================

[](#generate-lightspeed-ecom-product-feeds-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d71cef215ff3fdfbb010e4359e52705402941ae750cedc72055b61cc873b8ba2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f74696d6f74687964632f6c61726176656c2d6c6967687473706565642d65636f6d2d70726f647563742d66656564732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/timothydc/laravel-lightspeed-ecom-product-feeds)[![Total Downloads](https://camo.githubusercontent.com/6ecd041f223d23c0a16288ba66bdea44d54fe2af89ab02929e4450d78f622c0f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74696d6f74687964632f6c61726176656c2d6c6967687473706565642d65636f6d2d70726f647563742d66656564732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/timothydc/laravel-lightspeed-ecom-product-feeds)[![Github Tests Action Tests](https://camo.githubusercontent.com/cd2ba2f819493b4aa45ffc96f0a058c5eb1f8537f6469d7b617b669c5c31da37/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f74696d6f74687964632f6c61726176656c2d6c6967687473706565642d65636f6d2d70726f647563742d66656564732f72756e2d74657374733f6c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/timothydc/laravel-lightspeed-ecom-product-feeds/actions?query=workflow%3Arun-tests+branch%3Amaster)[![Github Tests Action Styling](https://camo.githubusercontent.com/ecfb63455819c29a1771399880e3b8bce04d1d7fbcd9a0ec5b2a35ddce614ba9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f74696d6f74687964632f6c61726176656c2d6c6967687473706565642d65636f6d2d70726f647563742d66656564732f6669782d7374796c696e673f6c6162656c3d7374796c696e67267374796c653d666c61742d737175617265)](https://github.com/timothydc/laravel-lightspeed-ecom-product-feeds/actions?query=workflow%3Afix-styling+branch%3Amaster)

Installation
------------

[](#installation)

Via Composer

```
$ composer require timothydc/laravel-lightspeed-ecom-product-feeds
```

You can publish all resources, or you may choose to publish them separately:

```
$ php artisan vendor:publish --tag="lightspeed-ecom-product-feed"

$ php artisan vendor:publish --tag="lightspeed-ecom-product-feed:config"
$ php artisan vendor:publish --tag="lightspeed-ecom-product-feed:migrations"
```

Run your migrations to create the `product_feeds` table.

```
$ php artisan migrate
```

You can choose to automatically run the created feeds via the task scheduler. It is also possible to generate the feeds directly or via a queue job. See `config/lightspeed-ecom-product-feed.php` for more configuration options.

```
return [
    'feed_disk' => env('LS_PRODUCT_FEEDS_FEED_DISK', 'public'),

    'scheduled_tasks' => [
        'auto_run' => env('LS_PRODUCT_FEEDS_AUTO_RUN', true),
        'use_queue' => env('LS_PRODUCT_FEEDS_USE_QUEUE', true),
        'queue' => env('LS_PRODUCT_FEEDS_QUEUE', 'default')
    ],
];
```

Custom feed mapping
-------------------

[](#custom-feed-mapping)

Create your own class and let it implement `ProductPayloadMappingInterface`. Or take a look at `TimothyDC\LightspeedEcomProductFeed\Feeds\StandardFeed` for some XML data structure inspiration.

```
use TimothyDC\LightspeedEcomProductFeed\Interfaces\ProductPayloadMappingInterface;

class CustomProductXml implements ProductPayloadMappingInterface
{
    public function execute(string $baseUrl, array $product): array
    {
        return ['product_id' => $product['id']];
    }
}
```

This package also offers some template feeds for:

- [Sooqr](https://www.sooqr.com/) (`TimothyDC\LightspeedEcomProductFeed\Feeds\SooqrFeed`)

Available commands
------------------

[](#available-commands)

Create a new product feed and answer the presented questions. Enter a valid [cron expression](https://crontab.guru/) when asked. Use a FQN for your custom class.

```
$ php artisan ecom-feed:create

> Enter your custom mapping class:
> Enter your cron interval:
> Enter your webshop API key:
> Enter your webshop API secret:
> What language should your feed be in?
```

Show a list of all the currently created product feeds.

```
$ php artisan ecom-feed:list
```

Update a product feed.

```
$ php artisan ecom-feed:update {id}
```

Show a product feed configuration.

```
$ php artisan ecom-feed:show {id}
```

Remove a product feed.

```
$ php artisan ecom-feed:remove {id}
```

Generate an XML by providing a product feed ID.

```
$ php artisan ecom-feed:generate {id}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Credits
-------

[](#credits)

- [Timothy De Cort](https://github.com/timothydc)
- [All Contributors](../../contributors)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~51 days

Recently: every ~301 days

Total

32

Last Release

567d ago

Major Versions

v0.1.0 → v1.0.02020-06-27

PHP version history (2 changes)v0.1.0PHP ^7.4

v1.13.0PHP ^7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/b19824d74959d87bb9c166a27875496cc58e9cc49e10fb551dea3d65f2bf30ad?d=identicon)[timothydc](/maintainers/timothydc)

---

Top Contributors

[![timothydc](https://avatars.githubusercontent.com/u/13786303?v=4)](https://github.com/timothydc "timothydc (32 commits)")

---

Tags

ecomfeedlaravellightspeedsooqrlaravelfeedecommercelightspeedtimothydcsooqr

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/timothydc-laravel-lightspeed-ecom-product-feeds/health.svg)

```
[![Health](https://phpackages.com/badges/timothydc-laravel-lightspeed-ecom-product-feeds/health.svg)](https://phpackages.com/packages/timothydc-laravel-lightspeed-ecom-product-feeds)
```

###  Alternatives

[aimeos/aimeos-laravel

Cloud native, API first Laravel eCommerce package with integrated AI for ultra-fast online shops, marketplaces and complex B2B projects

8.6k214.7k3](/packages/aimeos-aimeos-laravel)[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[aimeos/aimeos-headless

Aimeos headless ecommerce system

2.5k2.3k](/packages/aimeos-aimeos-headless)[timothydc/laravel-lightspeed-retail-api

Laravel package for Lightspeed Retail API

121.1k](/packages/timothydc-laravel-lightspeed-retail-api)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
