We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently PHP Insights is failing because of following error:
• [Security] Security issues found on dependencies: PHP Insights needs an internet connection to inspect security issues.
This can be "solved" by adding following to phpinsights.php file:
phpinsights.php
<?php return [ ..., remove => [ ... NunoMaduro\PhpInsights\Domain\Insights\ForbiddenSecurityIssues::class, ], ];
Any proper solution for this?
The text was updated successfully, but these errors were encountered:
I have been getting the same error. The code checks against https://repo.packagist.org/api/security-advisories/ which is returning a 404, so I think that is why.
Running composer audit I get no issues.
composer audit
Sorry, something went wrong.
The problem is the url for the api from the constant PACKAGIST_ADVISORIES_URL.
PACKAGIST_ADVISORIES_URL
curl "https://packagist.org/api/security-advisories/?packages[]=monolog/monolog" works correct. But the subdomain it lead in to the 404.
curl "https://packagist.org/api/security-advisories/?packages[]=monolog/monolog"
I just made a PR #705 making the change. Let's see if @nunomaduro can see it and accept it.
No branches or pull requests
Currently PHP Insights is failing because of following error:
This can be "solved" by adding following to
phpinsights.php
file:Any proper solution for this?
The text was updated successfully, but these errors were encountered: