bossa/phpspec2-expect

Helper that decorates any SUS with a phpspec lazy object wrapper

3.1.3 2020-02-12 21:34 UTC

This package is auto-updated.

Last update: 2024-03-11 21:24:21 UTC


README

Build Status

phpspec2-expect

Installation

Install it using the composer require command:

   composer require --dev bossa/phpspec2-expect

Alternativelly you can add it to the composer.json file

{
    "require-dev": {
         "bossa/phpspec2-expect": "^3.0"
    },
    "config": {
        "bin-dir": "bin"
    },
    "minimum-stability": "dev",
    "autoload": {
        "psr-0": {
            "spec": "",
            "": "src"
        }
    }
}

Usage

Inside some example:

       expect(file_exists('crazyfile.xtn'))->toBe(true);

Roadmap

Version 2.x supports PhpSpec 3 and PHP 5.6.

Version 3.0.x requires PhpSpec 4, and therefore requires PHP 7.

Version 3.1.x requires PhpSpec 5 and PHP 7.

These versions are all under active support.