-
-
Notifications
You must be signed in to change notification settings - Fork 283
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
Add support for Laravel 7 #369
Conversation
@nunomaduro Indeed, it looks like there is some kind of issue just putting I got :
I can't understand the which package is causing the issue... Can you read this ? |
Yeah, so phploc v6 requires php7.3, which is required with laravel 7. So if we are going to test only with Laravel 7, we will have to drop php7.2 support right? |
thanks @nunomaduro . I finally found there was some incompatibility between |
@olivernybroe we can restore laravel ^5.8 and ^6.0 in dev-dependancies to keep php7.2 support with these but I don't see a way to have php7.2 and Laravel 7 |
IMHO it's not bad to drop support of php 7.2 ... |
@bastien-phi For maintaining it would be much nicer to just go straight for php7.4 😉 However, I think by dropping 7.2 support, we will exclude a lot of users, which is something we should be pretty careful with. I think I'll let @nunomaduro make this decision 👍 |
Let's #MoveForward, with the note on the readme. |
Which means ? Test only on laravel 7 and drop php 7.2 support or this PR is ok right now ? |
Means all of this is good. |
Thanks @nunomaduro ! |
@@ -47,7 +47,7 @@ | |||
"Tests\\": "tests/" | |||
} | |||
}, | |||
"minimum-stability": "stable", | |||
"minimum-stability": "RC", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is here to use composer:1.10.0-rc, right ? which allow symfony/console:5.0 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
This PR add support for Laravel 7.
phploc/phploc
was updated to^5.0|^6.0
as only version 6.0 supportssymfony/console
5I had to downgrade
minimum stablility
toRC
becausecomposer/composer
has no stable version supportingsymfony/console
5 but there is a1.10.0-RC
version. See on packagist