PHPackages                             fresh-advance/product-feed - 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. fresh-advance/product-feed

ActiveOxideshop-module[API Development](/categories/api)

fresh-advance/product-feed
==========================

Product Feed API for OXID eShop

v1.0.0(5mo ago)02[1 PRs](https://github.com/Fresh-Advance/Product-Feed/pulls)proprietaryPHPPHP ^8.2CI passing

Since Nov 24Pushed 4mo agoCompare

[ Source](https://github.com/Fresh-Advance/Product-Feed)[ Packagist](https://packagist.org/packages/fresh-advance/product-feed)[ RSS](/packages/fresh-advance-product-feed/feed)WikiDiscussions b-7.3.x Synced 1mo ago

READMEChangelogDependencies (16)Versions (4)Used By (0)

Product Feed module for OXID eShop
==================================

[](#product-feed-module-for-oxid-eshop)

[![Development](https://github.com/Fresh-Advance/Product-Feed/actions/workflows/trigger.yaml/badge.svg?branch=b-7.3.x)](https://github.com/Fresh-Advance/Product-Feed/actions/workflows/trigger.yaml)[![Latest Version](https://camo.githubusercontent.com/940c3afba9fd9a8c3f018c9f19b33234c3774c452b76cf1a654bd321ca63f990/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f66726573682d616476616e63652f70726f647563742d666565643f6c6f676f3d636f6d706f736572266c6162656c3d6c617465737426696e636c7564655f70726572656c656173657326636f6c6f723d6f72616e6765)](https://packagist.org/packages/fresh-advance/product-feed)[![PHP Version](https://camo.githubusercontent.com/db968709cfd7e65481e2fc90fcd2e2e6d4a8457ae1f4e5404b4442a135fcb4b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f66726573682d616476616e63652f70726f647563742d66656564)](https://github.com/Fresh-Advance/Product-Feed)

[![Quality Gate Status](https://camo.githubusercontent.com/48fa3e0d118e827a91f8839598ee9779688a4e0c21eb471a0311d22050dba87d/68747470733a2f2f736f6e6172636c6f75642e696f2f6170692f70726f6a6563745f6261646765732f6d6561737572653f70726f6a6563743d46726573682d416476616e63655f50726f647563742d46656564266d65747269633d616c6572745f737461747573)](https://sonarcloud.io/dashboard?id=Fresh-Advance_Product-Feed)[![Coverage](https://camo.githubusercontent.com/63f748b14ec92c7ad9ce4df272003b989b81f525d0f6461e678473705d1495e9/68747470733a2f2f736f6e6172636c6f75642e696f2f6170692f70726f6a6563745f6261646765732f6d6561737572653f70726f6a6563743d46726573682d416476616e63655f50726f647563742d46656564266d65747269633d636f766572616765)](https://sonarcloud.io/dashboard?id=Fresh-Advance_Product-Feed)[![Technical Debt](https://camo.githubusercontent.com/faa4dc90167a212aaf4d6dce8e73528aad9de168f18372142239220bd289b760/68747470733a2f2f736f6e6172636c6f75642e696f2f6170692f70726f6a6563745f6261646765732f6d6561737572653f70726f6a6563743d46726573682d416476616e63655f50726f647563742d46656564266d65747269633d7371616c655f696e646578)](https://sonarcloud.io/dashboard?id=Fresh-Advance_Product-Feed)

Features
--------

[](#features)

Produces the feed of products in the JSON format suitable for various marketing channels.

The example structure of the feed:

```
{
  "products": [
    {
      "id": "12345",
      "brand": "Tea Company",
      "name": "Organic Earl Grey Tea",
      "short_description": "Classic black tea with bergamot aroma.",
      "long_description": "Hand-picked from Sri Lanka’s highlands...",
      "price": "9.99 EUR",
      "weight": "100 g",
      "category": "Black Tea",
      "image_url": "https://yourshop.com/images/earl-grey.jpg",
      "url": "https://yourshop.com/products/earl-grey",
      "availability": "in_stock",
      "enable_search": true,
      "last_updated": "2025-11-09T19:00:00Z"
    }
  ]
}
```

Limitations
-----------

[](#limitations)

- The current version is producing one feed with all the products, so having large catalog may lead to performance issues.
    - Please contact us with a request for more performant solutions if needed, it could be implemented in the future versions.

Branch compatibility
--------------------

[](#branch-compatibility)

- Branch **b-7.4.x** is compatible with OXID Shop compilation **7.4.x**
- Branch **b-7.3.x** is compatible with OXID Shop compilation **7.3.x - 7.4.x**

Version compatibility
---------------------

[](#version-compatibility)

- Version **v1.0.0** is compatible with OXID Shop compilation **7.3.x - 7.4.x**

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

[](#installation)

Module is available on packagist and installable via composer

```
composer require fresh-advance/product-feed
./vendor/bin/oe-eshop-doctrine_migration migrations:migrate fa_product_feed

```

Development installation
========================

[](#development-installation)

To be able running the tests and other preconfigured quality tools, please install the module as a [root package](https://getcomposer.org/doc/04-schema.md#root-package).

The next section shows how to install the module as a root package by using the [Fresh Advance Development Base](https://github.com/Fresh-Advance/development).

In case of different environment usage, please adjust by your own needs.

Development installation on Fresh Advance Development Base
==========================================================

[](#development-installation-on-fresh-advance-development-base)

The installation instructions below are shown for the current [Fresh Advance Development Base](https://github.com/Fresh-Advance/development)for shop 7.4. Make sure your system meets the requirements of the Development Base.

1. Ensure all docker containers are down to avoid port conflicts
2. Clone the SDK for the new project

```
echo MyProject && git clone https://github.com/Fresh-Advance/development.git $_ && cd $_
```

2. Clone the repository to the source directory

```
git clone --recurse-submodules https://github.com/Fresh-Advance/Product-Feed.git --branch=b-7.3.x ./source
```

3. Run the recipe to setup the development environment

```
./source/recipes/setup-development.sh
```

You should be able to access the shop with  and the admin panel with (credentials:  / admin)

### Running the tests and quality tools

[](#running-the-tests-and-quality-tools)

Check the "scripts" section in the `composer.json` file for the available commands. Those commands can be executed by connecting to the php container and running the command from there, example:

```
make php
composer tests-coverage
```

Commands can be also triggered directly on the container with docker compose, example:

```
docker compose exec -T php composer tests-coverage
```

License
-------

[](#license)

Please make sure you checked the License before using the module. License subscription can be bought on [MB Arbatos Klubas website](https://arbatosklubas.eu/)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance73

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

156d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

OXIDmoduleseshop

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/fresh-advance-product-feed/health.svg)

```
[![Health](https://phpackages.com/badges/fresh-advance-product-feed/health.svg)](https://phpackages.com/packages/fresh-advance-product-feed)
```

###  Alternatives

[oxid-esales/oxideshop-ce

This package contains OXID eShop CE source code.

2381.1M191](/packages/oxid-esales-oxideshop-ce)[oxid-esales/graphql-base

OXID eSales GraphQL base module

24101.0k10](/packages/oxid-esales-graphql-base)[oxid-esales/graphql-storefront

OXID eSales GraphQL storefront module

2050.4k1](/packages/oxid-esales-graphql-storefront)[oxid-esales/paypal-module

This is the PayPal module for the OXID eShop.

36513.5k2](/packages/oxid-esales-paypal-module)[ddoe/wysiwyg-editor-module

Summernote WYSIWYG Editor for OXID eShop.

19981.7k2](/packages/ddoe-wysiwyg-editor-module)[oxid-esales/gdpr-optin-module

This is the GDPR opt-in module for the OXID eShop.

20459.1k2](/packages/oxid-esales-gdpr-optin-module)

PHPackages © 2026

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