mead_steve / behationary
This package is abandoned and no longer maintained.
No replacement package was suggested.
Interactive dictionary for Behat steps defined in multiple contexts.
dev-master
2015-06-16 10:44 UTC
Requires
- php: >=5.3
- vlucas/bulletphp: 1.2.0
Requires (Dev)
- behat/behat: v2.4.5
This package is auto-updated.
Last update: 2019-10-05 15:09:38 UTC
README
Human readable/searchable step dictionary for behat contexts.
Requirements
- php >= 5.3
- Composer
Installation
- Clone this repo
- Run "composer update" in the root.
- Point your webserver at the www subfolder.
- Ensure any file requests with api/ at the start is forwarded to api.php (this is done already for apache with .htaccess)
- In the repo root create config.php (this will be loaded automatically) with something like the following:
<?php namespace Behationary; // todo: Include context files. function getContexts() { // todo: Add all the feature contexts to this array return array( new \FeatureContext(array()), "AnotherFeatureContext" ); }