bitexpert/phing-securitychecker

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

Security Checker Phing Task

Package info

github.com/bitExpert/phing-securitychecker

pkg:composer/bitexpert/phing-securitychecker

Statistics

Installs: 19โ€‰406

Dependents: 9

Suggesters: 0

Stars: 15

Open Issues: 1

v0.4.0 2019-03-04 20:49 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Apache-2.0 6f4c15ab4fa2b3c22f9b8b83d33ac1a739f11a81

phingSecurity Checker


README

A Phing task for interacting with the SensioLabs Security Advisories Checker to check if your application uses dependencies with known security vulnerabilities.

๐Ÿ‘ Build Status
๐Ÿ‘ Coverage Status

Installation

The preferred way of installing bitexpert/phing-securitychecker is through Composer. Add bitexpert/phing-securitychecker as a dependency to composer.json:

composer.phar require --dev bitexpert/phing-securitychecker

Example

Import the default build.xml to let Phing know about the Security Checker task:

 <import file="vendor/bitexpert/phing-securitychecker/build.xml" />

If you imported the default build.xml, you are able to define the lock file path as well the as the webservice endpoint by defining two properties in your main build.xml file:

 <property name="securitychecker.lockfile" value="composer.lock" />
 <property name="securitychecker.endpoint" value="https://security.symfony.com/check_lock" />

Or define the securitychecker task on your own:

 <taskdef name="securitychecker" classname="bitExpert\Phing\SecurityChecker\SecurityCheckerTask" />

Call the task from your build target:

 <securitychecker lockfile="composer.lock" />

License

phing-securitychecker is released under the Apache 2.0 license.