donnah
donnah

Reputation: 43

Cannot install composer laravel/socialite

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.

enter image description here

Please help me.

Upvotes: 0

Views: 570

Answers (2)

Advaith
Advaith

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

Jahid Mahmud
Jahid Mahmud

Reputation: 1136

You should write this

composer require laravel/socialite

this is the command. Use this

Upvotes: 1

Related Questions