knplabs/phpspec-welldone-extension

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

Extension for PHPSPEC. Find out which classes are not specified.

v1.0.0 2015-10-02 10:59 UTC

This package is auto-updated.

Last update: 2022-09-23 13:38:32 UTC


README

Build Status Scrutinizer Quality Score

Installation

php composer.phar require knplabs/phpspec-welldone-extension dev-master

Configuration

#phpspec.yml
extensions:
    - Knp\PhpSpec\WellDone\Extension

Usage

./bin/phpspec status

Add exclusion (via phpspec.yml)

#phpspec.yml
knp.welldone.exclusion:
    - "*Controller"
    - "App\Entity\*"

extensions:
    - Knp\PhpSpec\WellDone\Extension

Add exclusion (via command)

./bin/phpspec status -e "*Controller, App\Entity\*"

With command, yml parameter will be overwrite.