move-elevator / local-php-security-checker-installer
Composer integration for local PHP security check
Package info
github.com/move-elevator/local-php-security-checker-installer
pkg:composer/move-elevator/local-php-security-checker-installer
1.0.6
2023-01-05 07:32 UTC
Requires
- php: >=5.3
This package is auto-updated.
Last update: 2026-03-05 15:17:08 UTC
README
Composer integration for local PHP security check using fabpot/local-php-security-checker
Install:
composer require move-elevator/local-php-security-checker-installer
Binary will be downloaded to your project's bin directory (vendor/bin by default, see documentation).
Usage:
vendor/bin/local-php-security-checker-installer && vendor/bin/local-php-security-checker
Example in composer.json to run it after install:
"scripts": {
"post-install-cmd": [
"local-php-security-checker-installer"
],
"security-checker:show": "vendor/bin/local-php-security-checker",
"security-checker:check": "vendor/bin/local-php-security-checker --format=markdown | grep -E '[0-9]+ packages have known vulnerabilities' && exit 1 || exit 0"
}