PHPackages                             snowio/akeneo3-snow-bundle - 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. snowio/akeneo3-snow-bundle

ActiveLibrary

snowio/akeneo3-snow-bundle
==========================

2.0.1(5y ago)0201[2 issues](https://github.com/snowio/akeneo3-snow-bundle/issues)[2 PRs](https://github.com/snowio/akeneo3-snow-bundle/pulls)MITPHP

Since May 28Pushed 3y ago1 watchersCompare

[ Source](https://github.com/snowio/akeneo3-snow-bundle)[ Packagist](https://packagist.org/packages/snowio/akeneo3-snow-bundle)[ RSS](/packages/snowio-akeneo3-snow-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (5)Dependencies (6)Versions (9)Used By (0)

Akeneo 3 Snow Bundle
====================

[](#akeneo-3-snow-bundle)

This is a custom Akeneo 3 bundle.

Purpose
-------

[](#purpose)

This bundle provides a new connector called Snowio Connector that allows us to export all the data from just one job. It will then zip them and send to a defined snowio endpoint.

- Full Job Export (products, product models, categories, attributes, attribute options, families and attribute groups)
- Partial Job Export (categories, attributes, attribute options, families and attribute groups)

Both jobs have the following final steps: Generate metadata, Zip files, send to Snowio using Guzzle.

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

[](#installation)

To install this bundle on a Akeneo 2 instance, run the following:

`composer require snowio/akeneo3-snow-bundle`

### Configure threshold check step

[](#configure-threshold-check-step)

`Snowio\Bundle\CsvConnectorBundle\Step\CheckThresholdsStep` has an injectable export threshold, and checks this against the read count of the previous step.

Define the class as a parameter:

```
parameters:
   ...
   snowio_connector.step.check_thresholds.class: Snowio\Bundle\CsvConnectorBundle\Step\CheckThresholdsStep

```

Create services for this class:

```
services:
   ...
   snowio_connector.step.check_threshold.products:
      class: '%snowio_connector.step.check_thresholds.class%'
      arguments:
         - 'check_thresholds'
         - '@event_dispatcher'
         - '@akeneo_batch.job_repository'
         - '%minimum_products_export%'

   snowio_connector.step.check_threshold.attributes:
      class: '%snowio_connector.step.check_thresholds.class%'
      arguments:
         - 'check_thresholds'
         - '@event_dispatcher'
         - '@akeneo_batch.job_repository'
         - '%minimum_attributes_export%'

```

You need to inject the thresholds (bottom parameter) - these should be referenced by variables in `parameters.yml`.

Add your services after the steps you want to check, e.g.:

```

services:
   ...
   snowio_connector.job.full_export:
       class: '%pim_connector.job.simple_job.class%'
       arguments:
           - '%snowio_connector.job_name.full_export%'
           - '@event_dispatcher'
           - '@akeneo_batch.job_repository'
           -
               - '@snowio_connector.step.csv_product.export'
               - '@snowio_connector.step.check_threshold.products'
               - '@snowio_connector.step.csv_variant_group.export'
               - '@snowio_connector.step.csv_category.export'
               - '@snowio_connector.step.csv_attribute.export'
               - '@snowio_connector.step.check_threshold.attributes'
               - '@snowio_connector.step.csv_attribute_option.export'
               - '@snowio_connector.step.csv_family.export'
               - '@snowio_connector.step.csv_attribute_group.export'
               - '@snowio_connector.step.metadata'
               - '@snowio_connector.step.archive'
               - '@snowio_connector.step.media_export'
               - '@snowio_connector.step.post'

Version ^1.4 introduce new parameters in `app/config/parameters.yml` which need to be added on deployment.
```
   media_export_directory: media_export/
   media_export_host: false
   media_export_user: false
   minimum_products_export: 0
   minimum_attributes_export: 0
```

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~139 days

Total

5

Last Release

1980d ago

Major Versions

0.2.0 → 1.0.02019-07-22

1.0.0 → 2.0.02020-12-03

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/248c125feb1acc5c8932c06226dcd5086760736ff5fc9ec69be32a3aeae8a339?d=identicon)[chickenland](/maintainers/chickenland)

---

Top Contributors

[![nei](https://avatars.githubusercontent.com/u/33385?v=4)](https://github.com/nei "nei (5 commits)")[![qrz-io](https://avatars.githubusercontent.com/u/3646206?v=4)](https://github.com/qrz-io "qrz-io (5 commits)")[![thisisandrew](https://avatars.githubusercontent.com/u/1011666?v=4)](https://github.com/thisisandrew "thisisandrew (5 commits)")[![liamjtoohey](https://avatars.githubusercontent.com/u/22290866?v=4)](https://github.com/liamjtoohey "liamjtoohey (2 commits)")

---

Tags

middlewaresnowio

### Embed Badge

![Health badge](/badges/snowio-akeneo3-snow-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/snowio-akeneo3-snow-bundle/health.svg)](https://phpackages.com/packages/snowio-akeneo3-snow-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[symfony/security-bundle

Provides a tight integration of the Security component into the Symfony full-stack framework

2.5k172.9M1.8k](/packages/symfony-security-bundle)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[sonata-project/entity-audit-bundle

Audit for Doctrine Entities

644989.8k1](/packages/sonata-project-entity-audit-bundle)

PHPackages © 2026

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