找不到错误类'Mylib \ Mytest'
我的路线/ web.php
Route::get('/', function () {
$rs = new Mylib\Mytest;
//@FIXME:Del or comment this debug script in routes/web.php
dd($rs);
//return view('welcome');
});
composer.json
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Mylib\\": "src/"
}
},
的src / Mytest.php
namespace src;
class Mytest
{
function theTest() {
return true;
}
}
已经运行了composer dump-autoload -o 还运行作曲家更新