laravel-gmail icon indicating copy to clipboard operation
laravel-gmail copied to clipboard

Not supported for Laravel 10

Open binaynova opened this issue 1 year ago • 3 comments

Not supported for Laravel 10

binaynova avatar Dec 08 '23 12:12 binaynova

Did you find some similar but still relevant library for Laravel 10?

MarekOtruba avatar Dec 20 '23 15:12 MarekOtruba

Yes, to do so, temporarily add Shift's fork to the repositories property of your composer.json:

{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/laravel-shift/laravel-gmail.git"
        }
    ]
}

Then update your dependency constraint to reference this branch:

{
    "require": {
        "dacastro4/laravel-gmail": "dev-l10-compatibility",
    }
}

Finally, run: composer update

binaynova avatar Dec 20 '23 15:12 binaynova

Even easier, you can now just use "dacastro4/laravel-gmail": "dev-master" version for laravel 10 with illuminate/auth 10 etc

mthorsdal avatar Jan 31 '24 14:01 mthorsdal