Matthew Collins
Matthew Collins

Reputation: 11

Is there a way to remove algolia/scout from laravel?

im am new to laravel and I recently installed Alogila on my Laravel application as I was working on a searching functionality using Laravel scout. The command I typed was composer require algolia/scout-extended

I am getting an error saying Impossible to connect, please check your Algolia Application Id. Since I have decided to not have a searching functionality in my application, I would like to remove algolia from my app. I am unsure of how to do this, any help would be much appreciated.

Upvotes: 0

Views: 1681

Answers (1)

Joseph
Joseph

Reputation: 6269

You have two way to do that

first way run the command

composer remove algolia/scout-extended

Second way remove it from your composer.json file

then run the command

composer update

Upvotes: 2

Related Questions