PHPackages                             burnbright/silverstripe-shop-shipping - 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. [Caching](/categories/caching)
4. /
5. burnbright/silverstripe-shop-shipping

Abandoned → [silvershop/shipping](/?search=silvershop%2Fshipping)Silverstripe-vendormodule[Caching](/categories/caching)

burnbright/silverstripe-shop-shipping
=====================================

Shipping methods for the SilverShop.

3.1.1(1mo ago)11.1k31[2 issues](https://github.com/silvershop/silvershop-shipping/issues)BSD-3-ClausePHPPHP ^8.3CI failing

Since Dec 8Pushed 1mo ago5 watchersCompare

[ Source](https://github.com/silvershop/silvershop-shipping)[ Packagist](https://packagist.org/packages/burnbright/silverstripe-shop-shipping)[ RSS](/packages/burnbright-silverstripe-shop-shipping/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (7)Dependencies (14)Versions (11)Used By (0)

SilverShop - Shipping Module
============================

[](#silvershop---shipping-module)

[![Latest Stable Version](https://camo.githubusercontent.com/88160ab8ed8b4c9c296ed77017d6447a92fba38e5f427421d034308f1d60f96d/68747470733a2f2f706f7365722e707567782e6f72672f73696c76657273686f702f7368697070696e672f762f737461626c652e706e67)](https://packagist.org/packages/silvershop/shipping)[![Latest Unstable Version](https://camo.githubusercontent.com/c6ba216121e5842d3979419a676aa3e85d049464a8cbff4d284ab79273a0b1c7/68747470733a2f2f706f7365722e707567782e6f72672f73696c76657273686f702f7368697070696e672f762f756e737461626c652e706e67)](https://packagist.org/packages/silvershop/shipping)[![CI](https://github.com/silvershop/silvershop-shipping/actions/workflows/ci.yml/badge.svg)](https://github.com/silvershop/silvershop-shipping/actions/workflows/ci.yml)[![Code Coverage](https://camo.githubusercontent.com/e0bee79a85479a045eaaecffe7cad6b34725f197dfae308e787254e835a858c4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73696c76657273686f702f73696c76657273686f702d7368697070696e672f6261646765732f636f7665726167652e706e673f733d63616530313430663664396139396333356232306332336238626265383837313164353236323436)](https://scrutinizer-ci.com/g/silvershop/silvershop-shipping/)[![Scrutinizer Quality Score](https://camo.githubusercontent.com/3125c1d86b79c488d81de84027e4a6e5ef01a929b443721349c0593b1bed15e2/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73696c76657273686f702f73696c76657273686f702d7368697070696e672f6261646765732f7175616c6974792d73636f72652e706e673f733d38303237333165323335363562356137303531623536323261353666636362376237363436363261)](https://scrutinizer-ci.com/g/silvershop/silvershop-shipping/)[![Total Downloads](https://camo.githubusercontent.com/1b0964d373a6db6bb83ff8f18a8232f2020ae4e235cf43c5a0558e07fc69e984/68747470733a2f2f706f7365722e707567782e6f72672f73696c76657273686f702f7368697070696e672f646f776e6c6f6164732e706e67)](https://packagist.org/packages/silvershop/shipping)

Introduce shipping options to SilverShop

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

[](#installation)

```
composer require silvershop/shipping
```

Add the ShippingFrameWorkModifier to your modifiers config, eg:

```
SilverShop\Model\Order:
  modifiers:
    - SilverShop\Shipping\ShippingFrameworkModifier
```

You need to use the new SteppedCheckout system to allow customers to set their address before they choose their shipping method. To set up steps, including the shippingmethod step, add the following to your mysite/\_config/config.yml file:

```
SilverShop\Page\CheckoutPage:
    steps:
        'membership': 'CheckoutStep_Membership'
        'contactdetails': 'CheckoutStep_ContactDetails'
        'shippingaddress': 'CheckoutStep_Address'
        'billingaddress': 'CheckoutStep_Address'
        'shippingmethod': 'CheckoutStep_ShippingMethod' #extra line for shipping method
        'paymentmethod': 'CheckoutStep_PaymentMethod'
        'summary': 'CheckoutStep_Summary'
```

If included, remove SteppedCheckout::setupSteps() from your \_config.php file (SteppedCheckout::setupSteps() creates default checkout page steps no longer needed with the above YAML entries).

To add the shipping estimation form to your CartPage template, add the following somewhere on your CartPage.ss template:

```

```

If you need some example tableshipping data to populate your site for testing/development, you can run the task: `yoursite.tld/dev/tasks/PopulateTableShippingTask`

Architecture
------------

[](#architecture)

`ShippingPackage` is a class used to encapsulate shipping data including: weight, dimensions, value, quantity.

`ShippingMethod` is the base class for different types of shipping calculation. These could either be flat rates, table based rates, or a

`TableShippingMethod` has many `TableShippingRate`, where `TableShippingRate extends RegionRestriction`. Table shipping rates also have optional weight, volume, value, and quantity constraint fields.

`DistanceShippingMethod` has many `DistanceShippingFare`, and requires the [shop\_geocoding](https://github.com/silvershop/silvershop-geocoding) module to be present.

### Region Restrictions

[](#region-restrictions)

The `RegionRestriction` class serves as a base class for providing regionalised restrictions. Restrictions are specified by Country, State, and PostalCode. A value/rate can be given to each restriction. To work the appropriate rate, query for all the matching restrictions, and sort by cheapest.

The wildcard '\*' means the restriction will match any region.

###  Health Score

54

—

FairBetter than 97% of packages

Maintenance73

Regular maintenance activity

Popularity21

Limited adoption so far

Community26

Small or concentrated contributor base

Maturity84

Battle-tested with a long release history

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

Recently: every ~250 days

Total

10

Last Release

34d ago

Major Versions

0.3.0 → 2.0.02020-12-26

2.x-dev → 3.0.02023-09-27

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1356335?v=4)[Jeremy Shipman](/maintainers/jedateach)[@jedateach](https://github.com/jedateach)

---

Top Contributors

[![jedateach](https://avatars.githubusercontent.com/u/1356335?v=4)](https://github.com/jedateach "jedateach (82 commits)")[![wilr](https://avatars.githubusercontent.com/u/101629?v=4)](https://github.com/wilr "wilr (72 commits)")[![AntonyThorpe](https://avatars.githubusercontent.com/u/1023740?v=4)](https://github.com/AntonyThorpe "AntonyThorpe (31 commits)")[![RVXD](https://avatars.githubusercontent.com/u/1586761?v=4)](https://github.com/RVXD "RVXD (4 commits)")[![nimeso](https://avatars.githubusercontent.com/u/1796069?v=4)](https://github.com/nimeso "nimeso (3 commits)")[![sanderha](https://avatars.githubusercontent.com/u/6941043?v=4)](https://github.com/sanderha "sanderha (3 commits)")[![TheBnl](https://avatars.githubusercontent.com/u/1334195?v=4)](https://github.com/TheBnl "TheBnl (3 commits)")[![sn4h](https://avatars.githubusercontent.com/u/131519602?v=4)](https://github.com/sn4h "sn4h (2 commits)")[![wernerkrauss](https://avatars.githubusercontent.com/u/1043925?v=4)](https://github.com/wernerkrauss "wernerkrauss (2 commits)")[![sebastiand](https://avatars.githubusercontent.com/u/974056?v=4)](https://github.com/sebastiand "sebastiand (2 commits)")[![anhld](https://avatars.githubusercontent.com/u/4111365?v=4)](https://github.com/anhld "anhld (2 commits)")[![BettinaMaria98](https://avatars.githubusercontent.com/u/50010683?v=4)](https://github.com/BettinaMaria98 "BettinaMaria98 (1 commits)")[![slievr](https://avatars.githubusercontent.com/u/5398509?v=4)](https://github.com/slievr "slievr (1 commits)")[![beeonlinenz](https://avatars.githubusercontent.com/u/5632715?v=4)](https://github.com/beeonlinenz "beeonlinenz (1 commits)")[![ctx2002](https://avatars.githubusercontent.com/u/1106874?v=4)](https://github.com/ctx2002 "ctx2002 (1 commits)")[![bummzack](https://avatars.githubusercontent.com/u/1006185?v=4)](https://github.com/bummzack "bummzack (1 commits)")[![elkebe](https://avatars.githubusercontent.com/u/31311851?v=4)](https://github.com/elkebe "elkebe (1 commits)")[![jeffwhitfield](https://avatars.githubusercontent.com/u/274571?v=4)](https://github.com/jeffwhitfield "jeffwhitfield (1 commits)")[![mohamedallou](https://avatars.githubusercontent.com/u/30704958?v=4)](https://github.com/mohamedallou "mohamedallou (1 commits)")[![rotassator](https://avatars.githubusercontent.com/u/7939537?v=4)](https://github.com/rotassator "rotassator (1 commits)")

---

Tags

silverstripeshopecommerceshippingfreightsilvershop

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/burnbright-silverstripe-shop-shipping/health.svg)

```
[![Health](https://phpackages.com/badges/burnbright-silverstripe-shop-shipping/health.svg)](https://phpackages.com/packages/burnbright-silverstripe-shop-shipping)
```

PHPackages © 2026

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