Make it component-based #40642
Unanswered
miladrahimi
asked this question in
Ideas
Replies: 2 comments
-
Couldn't you just aquire the specifics Illuminate packages you need? laravel/framework is just a large collection of https://github.com/illuminate |
Beta Was this translation helpful? Give feedback.
0 replies
-
@FoksVHox |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Although the Laravel is getting bigger, it forces you to install the framework with all its features. I think it's time to split it into separate components.
For example, if you need to send emails in your project, you should first install the mail feature with the following command:
compose require laravel/mail
Or authentications:
compose require laravel/session-auth
compose require laravel/sanctum
And more important, let the users choose which one they need. Laravel should have no component installed out of the box. In the new version, you see sanctum as a separate package. It's great, but unfortunately, it has been installed out of the box.
Beta Was this translation helpful? Give feedback.
All reactions