thibautselingue / local-php-security-checker-installer
Composer integration for local PHP security check
Installs: 524 770
Dependents: 7
Suggesters: 0
Security: 0
Stars: 16
Watchers: 1
Forks: 6
Open Issues: 1
Requires
- php: >=5.3
README
Composer integration for local PHP security check using fabpot/local-php-security-checker
This project is archived as it was rendered obsolete by the composer audit
command.
Install:
composer require thibautselingue/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 passing path to Composer binary:
COMPOSER_BIN=./composer.phar 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 && local-php-security-checker"
]
}