dev-master
9999999-dev http://easysysconnector.comEasysysConnectorBundle for Symfony2
MIT
The Requires
by remdan
bundle symfony easysys
EasysysConnectorBundle for Symfony2
EasysysConnectorBundle, (*1)
Add EasysysConnectorBundle to your composer.json using the following construct:, (*2)
```{.json} { "require": { "remdan/easysys-connector-bundle": "dev-master" } }, (*3)
Now tell composer to download the bundle by running the following command: ``` bash $ php composer.phar update remdan/easysys-connector-bundle
Composer will now fetch and install this bundle in the vendor directory vendor/remdan
, (*4)
Enable the bundle in the kernel:, (*5)
```{.php} <?php // app/AppKernel.php, (*6)
public function registerBundles() { $bundles = array( // ... new Remdan\EasysysConnectorBundle\RemdanEasysysConnectorBundle(), ); }, (*7)
### Step 3: Configure the bundle This bundle was designed to just work out of the box. The only thing you have to configure in order to get this bundle up and running is the easysy-config. ```{.yaml} # app/config/config.yml remdan_easysys_connector: auth_adapter: ~ http_adapter: ~ auth: token: public_key: ~ signature_key: ~ user_id: ~ company: ~ resource_manager: ~
EasysysConnectorBundle for Symfony2
MIT
bundle symfony easysys