tallieutallieu/dry-ecommerce

There is no license information available for the latest version (1.1) of this package.

E-commerce package

1.1 2023-11-16 10:59 UTC

This package is auto-updated.

Last update: 2024-04-16 13:01:23 UTC


README

E-commerce platform

Installation

composer require tallieutallieu/dry-ecommerce

Register the service provider

<?php

$app = new \Oak\Application();

$app->register([
    \Tnt\Ecommerce\EcommerceServiceProvider::class,
]);

$app->bootstrap();
Config options
Name Default
payment \Tnt\Ecommerce\Payment\NullPayment::class

Careful! Payment can be set from configuration. the default value of the "payment" config property provides a default NullPayment which basically gives everything away for free. For more info on payments check out the topic payments below.

Concepts

  • Buyable
  • Cart
  • Discount & Coupon
  • Fulfillment
  • Customer
  • Order
  • Payment
  • Stock
  • Tax

Buyable

Documentation coming soon

Cart

<?php

$cart = $app->get(CartInterface::class);

$cart->add($buyable, 2);
$cart->remove($buyable);
$cart->clear();
$items = $cart->items();

$cart->setFulfillment($shipping);
$fulfillment = $cart->getFulfillment();
$fulfillmentCost = $cart->getFulfillmentCost();

$cart->addDiscount($discountCode);
$discountCode = $cart->getDiscount();

$subTotal = $cart->getSubTotal();
$total = $cart->getTotal();
$reduction = $cart->getReduction();

$order = $cart->checkout($customer);

Discount & Coupon

Documentation coming soon

Fulfillment

Documentation coming soon

Customer

Documentation coming soon

Order

Documentation coming soon

Payment

Documentation coming soon.

Available payment packages:

Stock

Documentation coming soon

Tax

Documentation coming soon