> Rather than forking it yourself, you may as well take advantage of someone else's fixed fork.
In your composer.json add the following which will use the repository which @Butochnikov has already forked and updated to work with Laravel 9.
"repositories": [{ "type": "package", "canonical": false, "package": { "version": "master", "name": "asantibanez/livewire-calendar", "source": { "url": "https://github.com/Butochnikov/livewire-calendar.git", "type": "git", "reference": "master" } } }]
Then run composer require asantibanez/livewire-calendar:*
It'll then install for you.
Just remember to undo that and use the original when @asantibanez gets around to accepting the pull request.
In the terminal I had to use.
composer require asantibanez/livewire-calendar:dev-master
Originally posted by @grafxflow in #32 (comment)
In the terminal I had to use.
Originally posted by @grafxflow in #32 (comment)