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.