How can I use composer autoloader to load slim? I have it a go below,
composer.json:
{
"autoload": {
"psr-4": {
"Vendor\\Namespace\\": ""
}
}
}
index.php:
require dirname(__FILE__).'/vendor/autoload.php';
use \Slim\Slim;
Slim::registerAutoloader();
//Instantiate a Slim application:
$app = new Slim();
//Define a HTTP GET route:
$app->get('/', function () {
echo "Hello!";
});
$app->get('/hello/:name/', function ($name) {
echo "Hello, $name";
});
//Run the Slim application:
$app->run();
error:
Fatal error: Class 'Slim\Slim' not found in C:...
Any ideas what have I missed?