PHPackages                             imjoehaines/flowdception - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. imjoehaines/flowdception

ActiveLibrary[Testing &amp; Quality](/categories/testing)

imjoehaines/flowdception
========================

A Codeception Extension for Flowder

v1.0.1(4y ago)0180.2k2UnlicensePHP

Since May 4Pushed 2y ago1 watchersCompare

[ Source](https://github.com/imjoehaines/flowdception)[ Packagist](https://packagist.org/packages/imjoehaines/flowdception)[ Docs](https://github.com/imjoehaines/flowdception)[ RSS](/packages/imjoehaines-flowdception/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

Flowdception [![Latest Stable Version](https://camo.githubusercontent.com/f3ea6cda4f77fda5b4ada310457fcbd22550c752a7f69d91692856804860eddc/68747470733a2f2f706f7365722e707567782e6f72672f696d6a6f656861696e65732f666c6f776463657074696f6e2f762f737461626c65)](https://packagist.org/packages/imjoehaines/flowdception) [![Build Status](https://camo.githubusercontent.com/4843deacb595caa2ed8e7a0fbbb64017f52474794b3d6a513d6ed6b1d8b079a9/68747470733a2f2f7472617669732d63692e6f72672f696d6a6f656861696e65732f666c6f776463657074696f6e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/imjoehaines/flowdception) [![codecov](https://camo.githubusercontent.com/e638bdb7b4109e26e5f7883254ecae93b6d7b6997a4363bb5fba46a028e0c08c/68747470733a2f2f636f6465636f762e696f2f67682f696d6a6f656861696e65732f666c6f776463657074696f6e2f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/imjoehaines/flowdception)
=========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#flowdception---)

**Flowdception** is a Codeception Extension for integrating the [Flowder](https://github.com/imjoehaines/flowder) fixture loader into Codeception test suites.

Usage
-----

[](#usage)

1. Install Flowdception as a development dependency through [Composer](https://getcomposer.org/)

    ```
    $ composer install imjoehaines/flowdception --dev
    ```
2. Enable Flowdception as an extension in your main `codeception.yml`, or a specific suite's YAML configuration file (e.g. `integration.suite.yml`)

    ```
    extensions:
      enabled:
        - \Imjoehaines\Flowder\Codeception\Flowdception
    ```
3. Bootstrap Flowdception by calling `Flowdception::bootsrap` in one of your `_bootstrap.php` Codeception files, passing in an instance of `\Imjoehaines\Flowder\Flowder` (see the [Flowder documentation](https://github.com/imjoehaines/flowder) for more information).

    A simple SQLite example might look like this:

    ```
