I'm searching for an easy way to include vendor namespaces in a plugin.
Currently, I try to develop a plugin, that requires third party software organized in namespaces. If I call the namespaces (e.g. use vendor\Base64), I get an error (Class 'vendor\Base64' not found), because the namespace is unknown. I also tried to autoload the namespace without success. I don't want to include all files. Is there a good practice how to do this?