flower
flower

Reputation: 1059

composer require --dev laravel/dusk:^1.0 give Nothing to install or update

trying to install laravel/dusk give me this error

> php artisan clear-compiled
 PHP Warning:  Module 'mongodb' already loaded in Unknown on line 0
 The compiled services file has been removed.
Loading composer repositories with package information
Updating dependencies (including require-dev)
Nothing to install or update

how to fix this ?

Upvotes: 0

Views: 279

Answers (1)

Marcin Nabiałek
Marcin Nabiałek

Reputation: 111829

Looking at the information it seems you have already installed Laravel Dusk. Go to vendor/laravel directory and verify whether you have dusk folder inside.

Obviously to complete installation you should follow Dusk installation guide.

Upvotes: 2

Related Questions