LoginSignup
5
2

More than 3 years have passed since last update.

Laravel 5.5 Socialiteのインストールでエラーが出た

Posted at

環境

Laravel バージョン 5.5

Socialiteをインストール

LaravelでSNSログインする際にいろいろやってくれるSocialite。

公式
https://readouble.com/laravel/5.5/ja/socialite.html

composerでインストールします。

ターミナル
composer require laravel/socialite

順調に行くかと思われたその時、

Installation failed, reverting ./composer.json to its original content.

むむ。
怒られました。

解決方法

現在、Laravel 5.5では 最新バージョンがインスールできないらしい。

ということで、

ターミナル
composer require laravel/socialite "3.0.*"

3.0をインストール。

Package manifest generated successfully.

完了しました!

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2