PHPackages                             3brs/sylius-shipment-export-plugin - 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. 3brs/sylius-shipment-export-plugin

ActiveSylius-plugin

3brs/sylius-shipment-export-plugin
==================================

Shipping export plugin for Sylius

v2.0.0(3mo ago)03.4k↓25%63MITPHPPHP ^8.3CI failing

Since Oct 5Pushed 3mo ago2 watchersCompare

[ Source](https://github.com/3BRS/sylius-shipment-export-plugin)[ Packagist](https://packagist.org/packages/3brs/sylius-shipment-export-plugin)[ RSS](/packages/3brs-sylius-shipment-export-plugin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (36)Versions (13)Used By (3)

 [ ![](https://camo.githubusercontent.com/bb0c16caf210bea68e0e59fc11e0844dc47097f9aeb8b388c3de5f1414d4d1c0/68747470733a2f2f33627273312e667261312e63646e2e6469676974616c6f6365616e7370616365732e636f6d2f336272732f6c6f676f2f334252532d6c6f676f2d73796c6975732d3230302e706e67) ](https://www.3brs.com)

Shipment Export Plugin
 [ ![](https://camo.githubusercontent.com/5b7d4d02d1f39e21668ce5b96ec44b051d07be21a16b71762c14da27ac49ab42/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f336272732f73796c6975732d736869706d656e742d6578706f72742d706c7567696e) ](https://packagist.org/packages/3brs/sylius-shipment-export-plugin "License") [ ![](https://camo.githubusercontent.com/699113312addb884e153486cc109c87ed1de26b9228b8c1ede9d55c4add528de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f336272732f73796c6975732d736869706d656e742d6578706f72742d706c7567696e) ](https://packagist.org/packages/3brs/sylius-shipment-export-plugin "Version") [ ![](https://camo.githubusercontent.com/4f5f479dddb04a8c8f1271afacc36147152daea27b4089fbb4266cf0d56e4c72/68747470733a2f2f636972636c6563692e636f6d2f67682f334252532f73796c6975732d736869706d656e742d6578706f72742d706c7567696e2e7376673f7374796c653d736869656c64) ](https://circleci.com/gh/3BRS/sylius-shipment-export-plugin "Build status")
=================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#shipment-export-plugin--------------------------------------------)

Features
--------

[](#features)

- See list of all ready to ship orders (offline payment method or payment completed for non offline method)
- Mark more orders at once as shipped
- Download CSV for submitting batch shipments with Geis
- Download CSV for submitting batch shipments with Czech Post
- You can easily extend the module to support custom CSV format for other shipping providers

 [![](https://raw.githubusercontent.com/3BRS/sylius-shipment-export-plugin/master/doc/menu.png)](https://raw.githubusercontent.com/3BRS/sylius-shipment-export-plugin/master/doc/menu.png)

 [![](https://raw.githubusercontent.com/3BRS/sylius-shipment-export-plugin/master/doc/list.png)](https://raw.githubusercontent.com/3BRS/sylius-shipment-export-plugin/master/doc/list.png)

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

[](#installation)

1. Run `composer require 3brs/sylius-shipment-export-plugin`.
2. Register `ThreeBRS\SyliusShipmentExportPlugin\ThreeBRSSyliusShipmentExportPlugin::class => ['all' => true]` in your `config/bundles.php`.
3. Import routes in your `config/routes.yaml`

```
threebrs_sylius_shipment_export_plugin:
    resource: "@ThreeBRSSyliusShipmentExportPlugin/Resources/config/admin_routing.{yml,yaml}"
    prefix: '/%sylius_admin.path_name%'

```

4. Import plugin configuration in your `config/packages/_sylius.yaml`

```
imports:
    - { resource: "@ThreeBRSSyliusShipmentExportPlugin/Resources/config/config.yaml" }
```

### Usage

[](#usage)

You can use predefined CSV type for shipment providers Geis and Czech Post) or write your own exporter.

Your custom exporter has to implement `ThreeBRS\SyliusShipmentExportPlugin\Model\ShipmentExporterInterface`and must be defined as service. Check out our sample implementations.

Predefined shipping providers:

- Czech post

```
ThreeBRS\SyliusShipmentExportPlugin\Model\CeskaPostaShipmentExporter:
    public: true
    arguments:
        $currencyConverter: '@sylius.converter.currency'
    tags:
        - name: threebrs.shipment_exporter_type
          type: 'ceska_posta'
          label: 'Česká pošta'

```

- Geis

```
ThreeBRS\SyliusShipmentExportPlugin\Model\GeisShipmentExporter:
    public: true
    arguments:
        $currencyConverter: '@sylius.converter.currency'
    tags:
        - name: threebrs.shipment_exporter_type
          type: 'geis'
          label: 'Geis'

```

### Shipping methods

[](#shipping-methods)

Your shipping methods must have a code that matches the code of the shipping method in the exporter

- for Geis see `\ThreeBRS\SyliusShipmentExportPlugin\Model\GeisShipmentExporter::getShippingMethodsCodes`
- for Czech Post see `\ThreeBRS\SyliusShipmentExportPlugin\Model\CeskaPostaShipmentExporter::getShippingMethodsCodes`

Development
-----------

[](#development)

### Usage

[](#usage-1)

- Develop your plugin in `/src`
- See `bin/` for useful commands

### Testing

[](#testing)

After your changes you must ensure that the tests are still passing.

```
$ composer install
$ bin/phpstan.sh
$ bin/ecs.sh
```

License
-------

[](#license)

This library is under the MIT license.

Credits
-------

[](#credits)

Developed by [3BRS](https://3brs.com)
Forked from [manGoweb](https://github.com/mangoweb-sylius/SyliusShipmentExportPlugin).

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance79

Regular maintenance activity

Popularity24

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity72

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

Recently: every ~87 days

Total

6

Last Release

111d ago

Major Versions

v0.8.0 → v1.0.02025-05-26

v1.0.0 → v2.0.02026-01-27

PHP version history (5 changes)v0.5.0PHP ^7.3|^8.0

v0.6.0PHP ^8.0

v0.8.0PHP ^8.1

v1.0.0PHP ^8.2

v2.0.0PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2500352?v=4)[Johan Hornof](/maintainers/hornofj)[@hornofj](https://github.com/hornofj)

![](https://avatars.githubusercontent.com/u/13216499?v=4)[Vašo](/maintainers/VasoOppelt)[@VasoOppelt](https://github.com/VasoOppelt)

![](https://www.gravatar.com/avatar/ab23998c28b111996e4b3357f20929d6904a97ac21724750e1dfafd6a09791e4?d=identicon)[ondrej-kuhnel](/maintainers/ondrej-kuhnel)

---

Top Contributors

[![ondrej-kuhnel](https://avatars.githubusercontent.com/u/6840281?v=4)](https://github.com/ondrej-kuhnel "ondrej-kuhnel (18 commits)")[![jaroslavtyc](https://avatars.githubusercontent.com/u/2290225?v=4)](https://github.com/jaroslavtyc "jaroslavtyc (17 commits)")[![hornofj](https://avatars.githubusercontent.com/u/2500352?v=4)](https://github.com/hornofj "hornofj (2 commits)")[![VasoOppelt](https://avatars.githubusercontent.com/u/13216499?v=4)](https://github.com/VasoOppelt "VasoOppelt (1 commits)")

---

Tags

syliussylius-plugin

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StyleECS

Type Coverage Yes

### Embed Badge

![Health badge](/badges/3brs-sylius-shipment-export-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/3brs-sylius-shipment-export-plugin/health.svg)](https://phpackages.com/packages/3brs-sylius-shipment-export-plugin)
```

###  Alternatives

[bitbag/cms-plugin

CMS plugin for Sylius applications.

2461.1M5](/packages/bitbag-cms-plugin)[sylius/invoicing-plugin

Invoicing plugin for Sylius.

901.0M2](/packages/sylius-invoicing-plugin)[sylius/refund-plugin

Plugin provides basic refunds functionality for Sylius application.

691.7M14](/packages/sylius-refund-plugin)[stefandoorn/sitemap-plugin

Sitemap Plugin for Sylius

851.0M](/packages/stefandoorn-sitemap-plugin)[sylius/paypal-plugin

PayPal plugin for Sylius.

451.4M4](/packages/sylius-paypal-plugin)[monsieurbiz/sylius-rich-editor-plugin

A Rich Editor plugin for Sylius.

75380.8k6](/packages/monsieurbiz-sylius-rich-editor-plugin)

PHPackages © 2026

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