stolfam/eshop

PHP Classes for building an e-shop system.

Maintainers

Details

github.com/stolfam/eshop

Source

Issues

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/stolfam/eshop

2.0.23 2021-03-21 12:56 UTC

This package is auto-updated.

Last update: 2025-09-21 23:11:00 UTC


README

Universal PHP Classes for e-shop system.

Requirements

  • PHP 7.4

Install

composer require stolfam/eshop

What's inside?

Now this package includes classes for:

  • Cart
    • CartStorage (interface)
  • Products
    • Attributes (interfaces)
  • Orders
    • Status history
  • Customers
    • Addreses
  • Roles
  • Tags
  • Repositories (interfaces)

How to use it?

As you want and as you need. I recommend creating your own classes and implementing all interfaces (repositories, attributes). For example:

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