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. burnbright/silverstripe-shop-shipping

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

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

Shipping methods for the SilverShop.

3.1.0(7mo ago)11.1k31[2 issues](https://github.com/silvershop/silvershop-shipping/issues)BSD-3-ClausePHP

Since Dec 8Pushed 4d 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 2d ago

READMEChangelog (6)Dependencies (9)Versions (10)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

45

↑

FairBetter than 92% of packages

Maintenance64

Regular maintenance activity

Popularity23

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity69

Established project with proven stability

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

Recently: every ~193 days

Total

9

Last Release

215d 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)

---

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)
