I current have the following composer.json file:
{
"require": {
"slim/slim": "2.*"
},
"autoload": {
"psr-0": { "App": "app/" }
}
}
I'm trying to instantiate a class in the app folder, but the autoloader is looking for:
/var/www/framework/app//App/App.php
Obviously the second parameter is the folder containing the namespace rather than the root of the namespace. How can I make it load:
/var/www/framework/app/App.php
Thanks in advance!