JeffreyWay / Laravel-Test-Helpers

Easier testing in Laravel.
https://packagist.org/packages/way/laravel-test-helpers
217 stars 40 forks source link

Should require "doctrine/dbal" as a dependency #65

Open simplenotezy opened 9 years ago

simplenotezy commented 9 years ago

After installing and running phpunit I get error:

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

Adding: "doctrine/dbal": "~2.3" to composer, and then running update, solves the problem.

sebastiansulinski commented 9 years ago

I was wondering what was happening - in my case there was no feedback from phpunit - your suggestion solved the problem. Many thanks @canfiax!