stolfam / eshop
PHP Classes for building an e-shop system.
Installs: 45
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/stolfam/eshop
Requires
- php: >= 7.4.0
- stolfam/cache-php: ^1.0
- stolfam/utils-php: ^1.0
Requires (Dev)
- nette/tester: >= 2.3
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
}