Question about new way of adding 3rd party libraries in package

Permalink
I have read the new documentation about adding custom code to packages from the developer documentationhttp://www.concrete5.org/documentation/developers/5.7/packages/addi... Now I have the following question:

I have the case, that I have several libraries that are build by composer. For example I have the following structure:

packages
    my_package
        vendor
            autoload.php
            composer
            guzzlehttp
            psr
            react
            sphere


Now I would like to use the autoload functions that are produced by composer for the different namespaces and libraries. How would I do that? I cannot figure it out myself.

creatingweb