cwd/easyname-bridge-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Simple symfony bridge for the easyname php-sdk

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master / 1.0.x-dev 2019-09-10 11:53 UTC

This package is auto-updated.

Last update: 2019-09-10 11:53:25 UTC


README

Install:

composer require cwd/easyname-bridge-bundle dev-master

Config:

cwd_easyname_bridge:
    url: "https://api.easyname.com"
    user:
        id: 1234
        email: user@host.de
    api:
        key: 'asdfasdfasdf'
        authentication_salt: 'asdsadf%%asdfasdfasdf'
        signing_salt: 'asdfasdfasdfasdf'
    debug: false

Attention: if you have an % in your salt, you have to escape it with an additional % !

Usage:

$service = $this->container->get('cwd_easyname_bridge.service');
$result = $service->getDomain(12345);