so I'm building a tool to increase security of a website. The tool is loaded before the CMS is started and will scan the Request for problematic content (like a soft firewall)
The thing is - I used some libs over Composer to build the tool. So far so good. Right now I'm thinking that might be a bad idea because if the CMS calls Composer Autoload as well, we will have maybe different versions of the same libs in the code (which will create problems and errors).
So is there a way to unload my composer autoload after my script is finished with scanning the request?
Thank you for any help :)