Bagisto screenshot
#212 B Rank #153

Bagisto

Laravel-based open-source e-commerce platform with multi-channel and marketplace support. Standout trait is leveraging Laravel's ecosystem (queues, events, Eloquent) for a more modern PHP e-commerce stack than most competitors.

E-commerce PHP Easy to deploy $30/mo equiv
65.5 / 100

βš™ Full Stack

Laravel/PHP application with MySQL as the primary store, Redis optionally used for cache/queues, and Vue.js powering the admin and storefront UI components. Standard Eloquent ORM keeps data access reasonably structured.

πŸ“ˆ Scaling Analysis

Laravel's queue/cache abstractions make horizontal scaling of app pods straightforward once Redis and a shared session store are in place. MySQL remains the eventual bottleneck for high-SKU catalogs and Black-Friday-style traffic spikes without read replicas.

πŸš€ Running on Nexlayer

Deploy as bagisto app pod plus mysql.pod:3306 (and optionally redis.pod:6379 for queues/cache), pulling mirror.gcr.io/library/mysql and mirror.gcr.io/library/redis images. Queue workers need to run as a long-lived process (php artisan queue:work) in the same or a sidecar container, not just via web requests.