knplabs / phpspec-welldone-extension
Extension for PHPSPEC. Find out which classes are not specified.
Installs: 18 655
Dependents: 10
Suggesters: 0
Security: 0
Stars: 6
Watchers: 31
Forks: 2
Open Issues: 1
Requires
- phpspec/phpspec: ~2.0
This package is auto-updated.
Last update: 2022-09-23 13:38:32 UTC
README
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.