soy-php / codeception-task
Codeception task for Soy
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/soy-php/codeception-task
Requires
- soy-php/soy: 0.1.*
This package is not auto-updated.
Last update: 2025-10-12 00:15:12 UTC
README
Introduction
This is a Codeception task for Soy
Usage
Include soy-php/codeception-task
in your project with composer:
$ composer require soy-php/codeception-task
Then in your recipe you can use the task as follows:
<?php $recipe = new \Soy\Recipe(); $recipe->component('default', function (\Soy\Codeception\BuildTask $buildTask, \Soy\Codeception\RunTask $runTask) { $buildTask ->setVerbose(true) ->run(); $runTask ->setCoverageFormats([ \Soy\Codeception\RunTask::COVERAGE_TEXT, \Soy\Codeception\RunTask::COVERAGE_XML => 'my-report.xml', ]) ->addReportFormat(\Soy\Codeception\RunTask::REPORT_JSON) ->setVerbose(true) ->setDebug(true) ->run(); }); return $recipe;