thibautselingue/local-php-security-checker-installer

This package is abandoned and no longer maintained. No replacement package was suggested.

Composer integration for local PHP security check

v1.0.4 2023-01-02 13:10 UTC

This package is auto-updated.

Last update: 2024-01-03 10:08:20 UTC


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"
    ]
}