I am trying to learn and experiment with Laravel, mostly to upskill myself and I was wondering if you could make a fully modular monolith using composer packages.
So far its working great for me however I was wondering if its possible to override another packages Config from a given package?
For example (and just an example, I know it would be a ridiculous thing to do), right now in app/config/queue.php you can change the failed_jobs table name to whatever you want.
Is it possible, in my own custom package, to create a config file that would override this config? Allowing me to set it to whatever I want if my package is installed? For example, change the name to system_jobs_failed?
(note: I understand in this example I would need to change the migration script for this to actually work, I am more interested in writing packages that alter config settings.)