Autoloading Classes in Plugins

Composer Autoloader as suggested in the comments is the best way to do it. Just use composers classmap feature:

"autoload": {
    "classmap": ["classes/"]
}