Download the PHP package peridot-php/peridot-jumpstart without Composer
On this page you can find all versions of the php package peridot-php/peridot-jumpstart. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download peridot-php/peridot-jumpstart
More information about peridot-php/peridot-jumpstart
Files in peridot-php/peridot-jumpstart
Package peridot-jumpstart
Short Description Starter kit to start BDD testing in PHP with Peridot
License MIT
Informations about the package peridot-jumpstart
Peridot Jumpstart
Peridot core and some commonly used packages to let you start doing BDD in PHP ASAP.
Included plugins and libraries
- List reporter - list test results
- Dot reporter - show results as dot matrix
- Code coverage reporters - code coverage
- Watcher plugin - watch source and tests for changes and re-run
- Concurrency plugin - run specs concurrently!
- Leo - expressive assertion and matcher library
Installing
We recommend installing the jumpstart via composer:
$ composer require --dev peridot-php/peridot-jumpstart
Getting started
After installing the jumpstart, a good starting point would be to copy this
package's peridot.php
file into the root of your project. This file will
set the default path for specs, and ensure that all the included plugins are
registered.
If you installed the jumpstart via composer, you can follow up by doing this:
$ cp vendor/peridot-php/peridot-jumpstart/peridot.php .
To set a different default path, disable a plugin, or set up further
configuration, simply edit your copy of peridot.php
.
After registering everything, vendor/bin/peridot -h
should yield the
following:
All versions of peridot-jumpstart with dependencies
peridot-php/peridot-list-reporter Version ^1
peridot-php/peridot-dot-reporter Version ^1
peridot-php/peridot-watcher-plugin Version ^1
peridot-php/peridot-code-coverage-reporters Version ^1
peridot-php/leo Version ^1
peridot-php/peridot-concurrency Version ^1