Download the PHP package lucatume/codeception-steppify without Composer

On this page you can find all versions of the php package lucatume/codeception-steppify. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package codeception-steppify

Steppify

Generate Gherkin steps from Codeception modules.

Build Status

Installation

Install this package using Composer:

and then add the command to the custom commands used by your project following Codeception documentation on the subject:

Usage

The command will generate traits usable in Codeception tester classes from codeception modules.
As an example I might want to generate Gherkin steps to use Codeception own [PhpBrowser](!g codeception PhpBrowser module) module methods in Gherkin features:

The command will generate PhpBrowserGherkinSteps.php, a PHP trait file, in the tests _support/_generated folder. To start using the new methods all that's required is to add a use statement for the PhpBrowserSteps trait in the suite Tester class:

You will now be able to write Gherkin features using steps generated from PhpBrowser module provided methods like:

The command is not limited to Codeception default modules only and will work with any custom module provided by other libraries or custom made for the project. While the command will make an extra effort to support modules in the Codeception\Module\ name space modules defined outside of that namespace will require the specification of the fully qualified name to work:

This means that is a shortcut for and you may provide any other compatible namespaced class.

Controlling the output methods

While the command will try to be "smart" and helpful in generating the methods signatures it has, and will always have, limits. For this reason the method signature generation logic will take into account cascading definitions during the generation process:

Docblock tags

The command supports two docblock tags to control the generation:

Please note that if Gherkin step compatible step definitions are found in the method doc block than those will be used.

Configuration file

The command supports a --steps-config <file.yml> option that allows specifying which methods and how steps should be generated. The file has the following format:

If a namespace option is specified the one specified in the settings file will be overridden by it.

Options

The command supports options meant to make its output controllable to a comfortable degree:


All versions of codeception-steppify with dependencies

PHP Build Version
Package Version
Requires codeception/codeception Version >=2.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lucatume/codeception-steppify contains the following files

Loading the files please wait ....