Reputation: 49
I downloaded the latest laravel framwork 8.54 and tried to install composer require s-ichikawa/laravel-sendgrid-driver
, but it failed.
is there any solution?
Upvotes: 1
Views: 837
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