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"
}
}
}
Inside some example:
expect(file_exists('crazyfile.xtn'))->toBe(true);
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.