Universal PHP Classes for e-shop system.
- PHP 7.4
composer require stolfam/eshop
Now this package includes classes for:
- Cart
- CartStorage (interface)
- Products
- Attributes (interfaces)
- Orders
- Status history
- Customers
- Addreses
- Roles
- Tags
- Repositories (interfaces)
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
}