sog / enom-bundle
enom bundle
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 3
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.2
- ext-curl: *
- symfony/framework-bundle: 2.*
This package is not auto-updated.
Last update: 2020-01-24 14:45:54 UTC
README
Symfony2 bundle for the Enom API. This wraps the Enom API in a Symfony2 bundle.
License
SOGEnomBundle is licensed under the MIT License - see the Resources/meta/LICENSE
file for details
Enom API Commands Supported
(See API Command Catalog for more details)
- GetAccountInfo
- GetTLDList
- GetServiceContact
- GetOrderList
- Check (domain registration)
- GetConfirmationSettings
- GetExtAttributes
more coming soon
Setup
Using Submodule
git submodule add https://github.com/shaneog/SOGEnomBundle.git vendor/bundles/SOG/EnomBundle
Using the vendors script
[SOGEnomBundle]
git=https://github.com/shaneog/SOGEnomBundle.git
target=bundles/SOG/EnomBundle
Add the SOG namespace to autoloader
<?php // app/autoload.php $loader->registerNamespaces(array( // ... 'SOG' => __DIR__.'/../vendor/bundles', ));
Add SOGEnomBundle to your application kernel
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new SOG\EnomBundle\SOGEnomBundle(), ); }
Yml configuration
# app/config/config.yml sog_enom: url: #Enom Reseller URL username: #Enom Account login ID password: #Enom Account password
Usage
Using service
<?php $enom = $this->get('Enom');