Laravel 5 PDOException Ne Pourrait Pas Trouver Le Pilote

J'ai un problème à l'aide de Laravel 5. Quand je lance "php aritsan migrer", j'ai eu cette erreur

**************************************
*     Application In Production!     *
**************************************

Do you really wish to run this command? [y/N] y

[PDOException]
could not find driver

Je pourrais exécuter l'application, mais lors de la connexion de base de données nécessaires, j'ai eu cette erreur

PDOException in Connector.php line 55:
could not find driver
in Connector.php line 55
at PDO->__construct('mysql:host=localhost;dbname=mydb', 'root', '', array('0', '2', '0', false, false)) in Connector.php line 55
at Connector->createConnection('mysql:host=localhost;dbname=mydb', array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'mydb', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, 'name' => 'mysql'), array('0', '2', '0', false, false)) in MySqlConnector.php line 22

Comment résoudre ce problème?

Installer le driver PDO sur votre serveur.

OriginalL'auteur ZZZ | 2016-02-06