How to install only autoload and Laravel routes in a new project?

Asked

Viewed 56 times

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.

1 answer

2


  • It has only the routing system?

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

  • I don’t need all the functionality only of the routing and routing system for the controllers.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.