laravel下run phpunit错误


错误如下:


 PHP Fatal error:  Class 'Doctrine\DBAL\Driver\PDOMySql\Driver' not found in /mnt/hgfs/server_php/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php on line 59

一直都很正常,突然就这样了。。

laravel phpunit php

5152538 10 years, 8 months ago

这个问题已经解决。原来是自laravel 4.1后把Doctrine去掉了。需要在composer.json里面手动加上依赖。


 "require": {
    ...
    ...
    "doctrine/dbal" : "2.4.*"
}

具体看这里

怒吼吧蛋蛋 answered 10 years, 8 months ago

Your Answer