Download the PHP package albertski/experient-bundle without Composer
On this page you can find all versions of the php package albertski/experient-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package experient-bundle
ExperientBundle
Used for Symfony2 project to use the Experient SOAP API.
Installation
Get the bundle with composer by running this command at the root of your symfony project.
composer require albertski/experient-bundle
Enable the bundle
To start using the bundle, register the bundle in your application's kernel class:
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new ExperientBundle\ExperientBundle(),
// ...
);
}
Configuration
Edit app/config/config.yml
.
experient:
username: %experient.username%
password: %experient.password%
showcode: %experient.showcode%
accountDomain: %experient.accountDomain%
wsdl: %experient.wsdl%
namespace: %experient.namespace%
Edit parameters.yml. Add parameters and add the parameter values.
parameters:
.....
.....
experient.username:
experient.password:
experient.showcode:
experient.accountDomain:
experient.wsdl:
experient.namespace:
Usage
You now have access to the experient service.
// In a controller
$experient = $this->get('experient');
All versions of experient-bundle with dependencies
PHP Build Version
Package Version
No informations.
The package albertski/experient-bundle contains the following files
Loading the files please wait ....