Slim(php微框架)无法找到类的错误,解决方案

you should edit your composer.json like that:

"autoload": {
    "psr-4": {
        "App\\": ""
    }
},
"require": {
    // ...
},
"scripts": {
    // ...
}

and dependencies.php

// PagesController
$container['PagesController'] = function ($container)
{
    return new \App\Controller\PagesController; 
};
next, you update your autoload
composer dump-autoload -o

你可能感兴趣的:(Slim(php微框架)无法找到类的错误,解决方案)