stolfam/eshop

用于构建电子商务系统的PHP类。

2.0.23 2021-03-21 12:56 UTC

This package is auto-updated.

Last update: 2024-09-21 20:59:10 UTC


README

通用电子商务系统PHP类。

要求

  • PHP 7.4

安装

composer require stolfam/eshop

里面有什么?

现在这个包包括了以下类的实现

  • 购物车
    • 购物车存储(接口)
  • 产品
    • 属性(接口)
  • 订单
    • 状态历史
  • 客户
    • 地址
  • 角色
  • 标签
  • 仓库(接口)

如何使用它?

根据您的需求和愿望。我建议创建自己的类并实现所有接口(仓库、属性)。例如

class MyAttribute implements IAttribute {
    // here should be your implementation
}