-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
but it conflicts with another require ... but it conflicts with another require #19
Comments
someone sent a PR to add support for Laravel 8, but no one created the tag. Composer keeps downloading version 1.2 which is only compatible with Laravel <= 7 and that's why you get that error. |
@TavoNiievez |
what i did was fork the project, create the 1.3 tag on the fork, and add this to my composer.json: "require": {
"botman/tinker": "^1.3",
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/YourUserName/tinker"
}
], then you can do a |
@TavoNiievez your fix works, thanks so much. It would be nice if the tag is sorted @mpociot |
@TavoNiievez works for me too. Thanks. |
@mpociot any chance of getting a new release tagged to make the Laravel 8 support available? |
I know it is late but you could do: composer require botman/tinker:dev-master Adding master fixes issue |
Not late for me, thank you! |
PHP 7.3.21
Laravel 8.17.2
ways to reproduce:
composer create-project --prefer-dist laravel/laravel my-project
composer require botman/tinker
I get error:
Thanks in advance for help.
The text was updated successfully, but these errors were encountered: