0
We are doing a test with a new project for a high traffic site (a few hundred, or thousands, of users per second) and wanted to know if there is any way to install only the route system and autoload of the Laravel. We won’t need every module that comes with it initially. Some lighter version or some way to uninstall via Composer which will not be used. In other words we need the minimum MVC configuration for this framework.
It has only the routing system?
– zwitterion
No, it comes mainly with routing enabled, but you can with a bit of configuration use some other Laravel features like Eloquent, Blade, etc. but only if necessary. It would be something a little different than what you suggested, it will not remove what you do not need and will only add what you need and when.
– Ademir Mazer Jr - Nuno
I don’t need all the functionality only of the routing and routing system for the controllers.
– zwitterion