2017 © Pedro Peláez
 

library cog-mothership-ecommerce

Cog module for processing E-Commerce in Mothership

image

mothership-ec/cog-mothership-ecommerce

Cog module for processing E-Commerce in Mothership

  • Wednesday, March 23, 2016
  • by thomasjthomasj
  • Repository
  • 6 Watchers
  • 2 Stars
  • 1,761 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 2 Forks
  • 56 Open issues
  • 96 Versions
  • 0 % Grown

The README.md

Mothership Ecommerce

Configuration

Dispatch

  • printer-name: ...

Payment

  • gateway: Name of gateway to use. Note the gateway must be available to the system.
  • use-test-payments: Use the test environment of external payment gateways.
  • salt: Used when hashing data in the payment processes.

Gateways

Payment gateways allow you to process payments through an external service., (*1)

There are two components to a gateway within mothership; an implementation of Gateway\GatewayInterface to communicate with the external service, and controllers to handle purchase and refund requests., (*2)

Default gateways

ZeroPayment

The zero payment gateway is the most basic implementation, it simply completes the order and redirects straight to the success url., (*3)

LocalPayment

The local payment gateway is an extension of zero payment., (*4)

Extending with new gateway providers

To add a new gateway provider you'll need to create a new adapter that implements Gateway\GatewayInterface and append it to the gateway.collection service., (*5)

Secondly you'll need to implement the Controllers\Gateway\PurchaseControllerInterface and Controllers\Gateway\RefundControllerInterface. If your new gateway does not support refunds then the refund() method should just return $this->createNotFoundException()., (*6)

Of course your gateway and controller(s) can use additional methods for handling the specific functionality and process flow for the new provider, such as callbacks from the external service., (*7)

Purchases

A purchase process is a system which sends a payment request to a gateway and creates / modifies an object on a success response and reacts accordingly to cancelled and failed purchases. For example, the standard checkout process which on success saves the order to the database and records the payment against it., (*8)

When writing a new purchase process the 'continue to payment' action should forward the request to the current gateway's purchase controller reference using $this->get('gateway')->getPurchaseControllerReference()., (*9)

This forward request should pass the instance of PayableInterface that is being purchased and the stages configuration., (*10)

$controller = 'Message:Mothership:Foo::Controller:Bar';
return $this->forward($this->get('gateway')->getPurchaseControllerReference(), [
    'payable' => $instanceOfPayableInterface,
    'stages'  => [
        'cancel'  => $controller . '#cancel',  // Method for reacting to cancelled purchases
        'failure' => $controller . '#failure', // Method for reacting to failed purchases
        'success' => $controller . '#success', // Method for reacting to successful purchases
    ]
]);

The purchase process requires a controller that implements Controllers\Gateway\CompleteControllerInterface. This should implement the success, cancel and failure methods., (*11)

The success() method should turn the payable into a saved instance of the object it represents, e.g. an order, store any payments as necessary and return a success url in a JsonResponse. This completion process should be called by the gateway purchase controller when confirming the purchase with the external provider., (*12)

Refunds

A refund process works in the same way as a purchase purchase, except you forward the request to $this->get('gateway')->getRefundControllerReference() and pass an additional reference parameter. The cancel stage is not required for refunds., (*13)

$controller = 'Message:Mothership:Foo::Controller:Bar';
return $this->forward($this->get('gateway')->getRefundControllerReference(), [
    'payable'   => $instanceOfPayableInterface,
    'reference' => 'reference for the payment made previously being refunded',
    'stages'    => [
        'failure' => $controller . '#failure', // Method for reacting to failed refunds
        'success' => $controller . '#success', // Method for reacting to successful refunds
    ]
]);

The Versions

23/03 2016

dev-develop

dev-develop http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

23/03 2016

dev-master

9999999-dev http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

23/03 2016

3.8.0

3.8.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

09/03 2016

3.7.3

3.7.3.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

19/02 2016

dev-feature/validate-email

dev-feature/validate-email http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

28/01 2016

3.7.2

3.7.2.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

06/01 2016

3.7.1

3.7.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

08/12 2015

3.7.0

3.7.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

16/11 2015

3.6.1

3.6.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

16/11 2015

3.6.0

3.6.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

11/11 2015

3.5.1

3.5.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

11/11 2015

dev-fulfillment-button-fix

dev-fulfillment-button-fix http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

04/11 2015

3.5.0

3.5.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

26/10 2015

3.4.0

3.4.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

05/10 2015

3.3.1

3.3.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

02/10 2015

3.3.0

3.3.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

18/09 2015

dev-revert-250-feature/product-page-tab

dev-revert-250-feature/product-page-tab http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

16/09 2015

3.2.1

3.2.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

11/09 2015

3.2.0

3.2.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

11/08 2015

dev-feature/product-page-create

dev-feature/product-page-create http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

07/08 2015

3.1.2

3.1.2.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

28/07 2015

3.1.1

3.1.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

18/06 2015

3.1.0

3.1.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

15/06 2015

3.0.5

3.0.5.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

11/06 2015

3.0.4

3.0.4.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

26/05 2015

dev-user-form

dev-user-form http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

21/05 2015

dev-feature/product-filtering

dev-feature/product-filtering http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

21/05 2015

3.0.3

3.0.3.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

27/04 2015

dev-feature/save-documents

dev-feature/save-documents http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

27/04 2015

3.0.2

3.0.2.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

23/03 2015

dev-feature/delivery-note

dev-feature/delivery-note http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

23/03 2015

3.0.1

3.0.1.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

24/02 2015

3.0.0

3.0.0.0 http://mothership.ec

Cog module for processing E-Commerce in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money ecommerce orders products order cog mothership

13/02 2015

dev-feature/view-namespacing

dev-feature/view-namespacing http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

13/02 2015

2.8.1

2.8.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

13/02 2015

dev-feature/2.8.1

dev-feature/2.8.1 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

13/02 2015

2.8.0

2.8.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

05/02 2015

2.7.0

2.7.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

29/01 2015

2.6.2

2.6.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

28/01 2015

2.6.1

2.6.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.12
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

27/01 2015

2.6.0

2.6.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.4
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-commerce ~4.7
  • message/cog-mothership-cms ~3.3
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

23/01 2015

2.5.1

2.5.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6 | ~2.0
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

22/01 2015

2.5.0

2.5.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6 | ~2.0
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

13/01 2015

dev-feature/product-selector

dev-feature/product-selector http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6 | ~2.0
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

08/01 2015

dev-feature/fulfillment-titles

dev-feature/fulfillment-titles http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6 | ~2.0
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

08/01 2015

2.4.1

2.4.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6 | ~2.0
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

16/12 2014

dev-feature/too-many-items-in-fulfillment

dev-feature/too-many-items-in-fulfillment http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

16/12 2014

2.4.0

2.4.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-commerce ~4.3
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

08/12 2014

2.3.0

2.3.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

08/12 2014

dev-release/2.2.2

dev-release/2.2.2 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

05/12 2014

dev-feature/default-view-updates

dev-feature/default-view-updates http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

30/10 2014

2.2.1

2.2.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

16/09 2014

dev-feature/lazy-loading

dev-feature/lazy-loading http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

16/09 2014

2.2.0

2.2.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.4
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~4.0
  • message/cog-mothership-cms ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

29/08 2014

2.1.2

2.1.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

04/08 2014

dev-feature/ajax-update

dev-feature/ajax-update http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

28/07 2014

2.1.1

2.1.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

24/06 2014

dev-feature/add-ms-option

dev-feature/add-ms-option http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

24/06 2014

2.1.0

2.1.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.2
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

11/06 2014

2.0.0

2.0.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

03/06 2014

dev-feature/delivery-note-w-stickers

dev-feature/delivery-note-w-stickers http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

30/05 2014

1.4.3

1.4.3.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

23/05 2014

dev-compatibility/uniform-wares

dev-compatibility/uniform-wares http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~3.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

14/05 2014

dev-feature/checkout-confirm-images

dev-feature/checkout-confirm-images http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

14/05 2014

dev-feature/image-loading-bugfix

dev-feature/image-loading-bugfix http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/common ~2.0

 

The Development Requires

by The Message Development Team

money ecommerce orders products order cog mothership

13/05 2014

1.4.2

1.4.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

13/05 2014

1.4.1

1.4.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

15/04 2014

1.4.0

1.4.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

11/04 2014

dev-compatibility/demo-dashboards

dev-compatibility/demo-dashboards http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

31/03 2014

1.3.3

1.3.3.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

25/03 2014

1.3.2

1.3.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

20/03 2014

1.3.1

1.3.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

18/03 2014

1.3.0

1.3.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

18/03 2014

dev-feature/checkout-refactor

dev-feature/checkout-refactor http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.1
  • message/cog-mothership-commerce ~2.0
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

11/03 2014

dev-feature/447-add-item-cancelled-status

dev-feature/447-add-item-cancelled-status http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

07/03 2014

dev-mob-refactoring/gateways

dev-mob-refactoring/gateways http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

06/02 2014

1.2.7

1.2.7.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

31/01 2014

1.2.6

1.2.6.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

21/01 2014

dev-feature/refactor-order-assembler

dev-feature/refactor-order-assembler http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

10/01 2014

1.2.5

1.2.5.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~3.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

10/01 2014

1.2.4

1.2.4.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

07/01 2014

1.2.3

1.2.3.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

06/01 2014

1.2.2

1.2.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

19/12 2013

1.2.1

1.2.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

19/12 2013

1.2.0

1.2.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

11/12 2013

1.1.2

1.1.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user ~1.0 | ~2.0
  • message/cog-mothership-cp ~1.0
  • message/cog-mothership-commerce ~1.1
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

09/12 2013

1.1.1

1.1.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

09/12 2013

1.1.0

1.1.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

04/12 2013

1.0.5

1.0.5.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

03/12 2013

1.0.4

1.0.4.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

28/11 2013

1.0.3

1.0.3.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

21/11 2013

1.0.2

1.0.2.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

20/11 2013

1.0.1

1.0.1.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.*
  • message/cog-mothership-cp 1.*
  • message/cog-mothership-commerce 1.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

17/11 2013

1.0.0

1.0.0.0 http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog-mothership-user 1.0.*
  • message/cog-mothership-cp 1.0.*
  • message/cog-mothership-commerce 1.0.*
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

08/11 2013

dev-ux/improvements

dev-ux/improvements http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog-mothership-user dev-master
  • message/cog-mothership-cp dev-master
  • message/cog-mothership-commerce dev-master
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership

30/10 2013

dev-checkout-progress

dev-checkout-progress http://message.co.uk

Cog module for processing E-Commerce in Mothership

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog-mothership-user dev-master
  • message/cog-mothership-cp dev-master
  • message/cog-mothership-commerce dev-master
  • omnipay/omnipay v1.0.3

 

by The Message Development Team

money ecommerce orders products order cog mothership