Composer autoloader + slim framework - 致命错误:找不到类'SlimSlim'?

2022-01-21 00:00:00 php composer-php slim autoloader

如何使用 composer autoloader 来加载 slim?我在下面试一试,

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 SlimSlim;

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();

错误:

致命错误:在 C: 中找不到类SlimSlim"...

Fatal error: Class 'SlimSlim' not found in C:...

任何想法我错过了什么?

Any ideas what have I missed?

推荐答案

如果你更喜欢在 ext 下保持苗条(正如你在这里提到的 Slim 框架 - 如何自动加载 Slim/Slim.php 而不是使用 require?)而不是将其用作 composer 包,我相信这会起作用:

If you prefer to keep slim under ext (as you mentioned here Slim framework - How to autoload Slim/Slim.php instead of using require?) instead of using it as a composer package, I believe this will work:

{
    "autoload": {
        "psr-0": {
            "": "ext/"
        }
    }
}

相关文章