A tool that parses your Behat .feature files and turns them alchemy-like into an interactive user manual.
The Feature Browser tool generates .html files to represent your .feature files in a user-friendly format. Users can browse the generated manual by tag or directory, and view the features with all scenario outlines expanded.
Pull requests are very welcome, please base them off develop branch. Thank you!
Install via composer/packagist:
composer require "feature-browser/feature-browser": "~1.0"
If you plan to use the tool only in your development environment and then deploy the generated documentation, rather than generating the files in your production environment, you can simply require dev only.
composer require --dev "feature-browser/feature-browser": "~1.0"
Configuring the FeatureBrowser can be done via the featurebrowser.yml file in your project root.
featurebrowser:
project-name: 'My Project'
base-url: 'myproject.com'
output-directory: 'docs'
features-directory: 'features'
Run the featurebrowser generator from the command line:
php bin/featurebrowser generate