#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.
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.