Navigation Menu

Skip to content
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

Merged
merged 4 commits into from Mar 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -20,7 +20,7 @@
"justinrainbow/json-schema": "^5.1",
"league/container": "^3.2",
"object-calisthenics/phpcs-calisthenics-rules": "^3.7",
"phploc/phploc": "^5.0",
"phploc/phploc": "^5.0|^6.0",
"psr/container": "^1.0",
"sensiolabs/security-checker": "^6.0",
"slevomat/coding-standard": "^6.0",
Expand All @@ -29,8 +29,8 @@
"symfony/finder": "^4.2|^5.0"
},
"require-dev": {
"illuminate/console": "^5.8",
"illuminate/support": "^5.8",
"illuminate/console": "^5.8|^6.0|^7.0",
bastien-phi marked this conversation as resolved.
Show resolved Hide resolved
"illuminate/support": "^5.8|^6.0|^7.0",
"ergebnis/phpstan-rules": "^0.14.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan-strict-rules": "^0.12",
Expand All @@ -47,7 +47,7 @@
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"minimum-stability": "RC",
Copy link
Collaborator

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 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

"autoload": {
"psr-4": {
"NunoMaduro\\PhpInsights\\": "src"
Expand Down