Reputation: 43
I am having error in installing laravel/socialite
in my laravel 5.2 project.
I tried this -- composer laravel/socialite
but gets an error like this.
Please help me.
Upvotes: 0
Views: 570
Reputation: 2580
To install a package to laravel using composer you need to add require
method after composer
Try doing like this
composer require laravel/socialite
Upvotes: 0
Reputation: 1136
You should write this
composer require laravel/socialite
this is the command. Use this
Upvotes: 1