-
Notifications
You must be signed in to change notification settings - Fork 61
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
Upgrade to Laravel 10 and PHP 8.1 #352
Conversation
In an effort to make upgrading the constantly changing config files easier, Shift defaulted them and merged your true customizations - where ENV variables may not be used.
Laravel 10.x shift and php 8.1 upgrade
Update home route to `/` instead of `/home`
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.
Looks good to me.
@@ -17,7 +17,7 @@ jobs: | |||
- name: Set up PHP | |||
uses: shivammathur/setup-php@v2 | |||
with: | |||
php-version: 8.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.
Is Nova Packages on a server that has 8.1 installed?
@@ -22,7 +22,7 @@ public function packageIdeaIssues(): Collection | |||
$issues = Http::github() | |||
->accept('application/vnd.github+json') | |||
->get('search/issues', [ | |||
'q' => 'state:open label:package-idea repo:tighten/nova-package-development', | |||
'q' => 'is:issue state:open label:package-idea repo:tighten/nova-package-development', |
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.
Was is:issue
added to ensure we only grab issues?
No description provided.