@jeroenvanrensen when you install a package using composer, it generates an class map and list files list and saves it within the /vendor/composer/ directory.
you'll see a whole load of files prefixed with autoload_*
That means you don't need to autoload every time you hit the app, as laravel uses the cached file list.
This lesson goes over the basics of how composer autoloads: