peridot-php/peridot-dot-reporter

A dot reporter for the Peridot testing framework

Maintainers

👁 brianium

Package info

github.com/peridot-php/peridot-dot-reporter

pkg:composer/peridot-php/peridot-dot-reporter

Statistics

Installs: 68 870

Dependents: 20

Suggesters: 0

Stars: 2

Open Issues: 0

1.0.0 2014-11-11 03:40 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT ba303540ddd4118a1d300bf739912556902a66d5

  • Brian Scaturro <scaturrob.woop@gmail.com>

This package is not auto-updated.

Last update: 2026-06-07 01:30:35 UTC


README

👁 Build Status
👁 HHVM Status

A simple dot matrix reporter for the Peridot testing framework.

👁 Peridot dot reporter in action

##Usage

We recommend installing the reporter to your project via composer:

$ composer require --dev peridot-php/peridot-dot-reporter:~1.0

You can register the reporter via your peridot.php file.

<?php

use Evenement\EventEmitterInterface;
use Peridot\Reporter\Dot\DotReporterPlugin;

return function(EventEmitterInterface $emitter) {
 $dot = new DotReporterPlugin($emitter);
};

##Running reporter tests

You can run the reporter specs and also preview the reporter in action like so:

$ vendor/bin/peridot specs/ -r dot