Lee Bin
Lee Bin

Reputation: 49

composer require s-ichikawa/laravel-sendgrid-driver failed in laravel 8.54

I downloaded the latest laravel framwork 8.54 and tried to install composer require s-ichikawa/laravel-sendgrid-driver, but it failed. enter image description here

is there any solution?

Upvotes: 1

Views: 837

Answers (1)

philnash
philnash

Reputation: 73075

It looks like version 4 of s-ichikawa/laravel-sendgrid-driver requires version 9 of illuminate/mail, but Laravel 8.x uses version 8.x of illuminate/mail.

Can you try to install version 3 of s-ichikawa/laravel-sendgrid-driver instead?

composer require s-ichikawa/laravel-sendgrid-driver:3.0.4

Upvotes: 3

Related Questions