DEV Community

Omar Ajmi
Omar Ajmi

Posted on

Distributed laravel apps

I have an idea of a project and i am thinking about creating a distributed laravel web application, the idea is decomposing the application into 3 or 4 smaller applications that each is hosted on a different server, each have a specific job and they inter-communicate via an API like system. so my question is is it possible and doable with laravel? if yes what approach i need to be considering thank you.

Top comments (2)

Collapse
 
sam_ferree profile image
Sam Ferree

You're talking about a microservice architecture.

In theory it's possible with any stack, but it looks like the recommended route for laravel devs is to use Lumen: belitsoft.com/laravel-development-...

Collapse
 
omarajmi profile image
Omar Ajmi

thats what i thought, to use lumen instead..and you confirmed it thank you man