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

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

作者: 你好667 | 来源:发表于2017-08-25 10:36 被阅读0次

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微框架)无法找到类的错误,解决方案

      本文链接:https://www.haomeiwen.com/subject/qmcudxtx.html