I'm trying to add some libraries to composer.json
The libraries are located at Symfony/vendor/foo/lib/Foo/*
Before I loaded them under the registerNamespaces method in autoload.php as:
...
'Foo' => __DIR__.'/../vendor/foo/lib',
...
I have tried adding them as "foo": "*" and "foo/foo": "*" in composer.json to no avail. The documentation seems extremely lacking in this regard.