-
Notifications
You must be signed in to change notification settings - Fork 60
EPS-1475: PHP Security Audit - UAE Lite #1263
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,8 @@ | |
"phpstan/phpstan": "^1.11", | ||
"php-stubs/generator": "^0.8.4", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What: Consider validating that the added dependency does not introduce vulnerabilities. Why: It's essential to ensure that any new dependencies are not only necessary but also safe and secure as they can lead to security issues in the project if they have known vulnerabilities. How: Check the security advisories for |
||
"php-stubs/wordpress-stubs": "^6.5", | ||
"szepeviktor/phpstan-wordpress": "^1.3" | ||
"szepeviktor/phpstan-wordpress": "^1.3", | ||
"pheromone/phpcs-security-audit": "^2.0" | ||
}, | ||
"scripts": { | ||
"format": "phpcbf", | ||
|
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.
What: Ensure the new dependency is compatible with existing packages and does not introduce conflicts.
Why: Compatibility is critical for maintaining project stability, and conflicts in package versions can lead to issues that negatively impact your application's functionality or security.
How: Consider running
composer update
after adding the new dependency to check for conflicts and usecomposer why-not <package>
to identify any dependencies that are not compatible.