Class 使用 composer 安装 slim 时找不到 Slim

Class Slim not found when installing slim with composer

我遵循了 slim 框架的说明。在我的目录

中创建了一个composer.json文件
{
    "require": {
        "slim/slim": "2.*"
    }
}

和 运行 作曲家安装文件。我现在有以下目录结构

如 slim framework 文档中所述,我创建了一个 index.php 文件并需要 vendor/autoload.php

但我收到 Class 未找到错误。

谢谢

在实例化 类 时尝试使用 命名空间 ... 像这样 new \Slim\Slim();.