Stars: 331
Forks: 59
Pull Requests: 262
Issues: 66
Watchers: 13
Last Updated: 2023-03-28 20:26:17
php artisan passport:keys
php artisan passport:client --personal
.env
. If you see a "Not enough rights to update an object near line:1" error when seeding your database, you're using the Search-Only key—swap it out for the Admin key.php artisan scout:import "App\Package"
php artisan db:seed
http://novapackages.test/login/github/callback
as the Authorized Callback URLGITHUB_CLIENT_ID
and GITHUB_CLIENT_SECRET
in the .env
filepublic_repo
scope enabledGITHUB_TOKEN
in the .env
file.SLACK_URL
variable to your .env
to post to a Slack channel of your choosing.Note: This webhook is hit when certain events are fired. If you are not testing this webhook specifically, you may want to consider commenting it out to avoid sending unnecessary Slack notifications.
php artisan storage:link
Some of the tests in this suite depend on an active internet connection, and will run by default. tests/Feature/RepoTest.php
provides coverage for the ReadMe import feature, and tests/Feature/CheckPackageUrlsCommandTest.php
provides coverage for the command that periodically validates package urls.
For convenience, these tests have been added to the integration
group. If you would like to exlude these tests from running, you may do so by using phpunit's --exclude-group
option:
phpunit --exclude-group=integration