Download the PHP package alteris/behat-zendframework-extension without Composer
On this page you can find all versions of the php package alteris/behat-zendframework-extension. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alteris/behat-zendframework-extension
More information about alteris/behat-zendframework-extension
Files in alteris/behat-zendframework-extension
Package behat-zendframework-extension
Short Description Extension connect Behat scenario with Zendframework application
License MIT
Informations about the package behat-zendframework-extension
Behat Zend framework integration
Integration Behat ^3.1 with Zend\Mvc\ApplicationInterface
.
This should allow integrate with Zend framework v2. and v3..
Installing extension
The easiest way to install is by using Composer:
or composer.json
"require": {
"alteris/behat-zendframework-extension": "~1.0"
},
Configuration
You can then activate the extension in your behat.yml
:
default:
# ...
extensions:
Alteris\BehatZendframeworkExtension\ServiceContainer\Extension:
configuration: PATH_TO_application.config.php
Injecting Application
Your context need to implement Alteris\BehatZendframeworkExtension\Context\ContextAwareInterface
and will be intialized with Zend\Mcv\ApplicationInterface
;
Injecting Services
The extension will automatically convert parameters injected into a context. You need to have set alias/name starting with '@':
default:
suites:
default:
contexts:
- FeatureContext:
testService: '@testService'
extensions:
Alteris\BehatZendframeworkExtension\ServiceContainer\Extension:
configuration: PATH_TO_application.config.php
The FeatureContext will then be initialized with the service from the Zend Framework container:
<?php
namespace FeatureContext;
use Behat\Behat\Context\Context;
use ModuleTest\Service\TestService;
class FeatureContext implements Context
{
public function __construct(TestService $testService)
{
//Service from Zend\Mvc\Application
}
}
Extra
- Available integration with Apigility with Alteris\BehatApigilityExtension
Examples
Versioning
Staring version 1.0.0
, will follow Semantic Versioning v2.0.0.