dekalee/enom
Laravel package for integrating with the eNom domain registrar API. Provides an easy way to manage domains and related registrar operations from your Laravel app, including configuration helpers and API client utilities.
This php library will be an abstraction for the Enom API.
We provide different classes to perform the requests :
Each of this query should be called with an argument which is the corresponding facade.
For exemple, to purchase the test.com domain:
use GuzzleHttp\Client;
use Dekalee\Enom\PurchaseQuery;
$client = new Client();
$query = new PurchaseQuery('your-uid', 'your-password', $client, 'https://reseller.enom.com/interface.asp');
$facade = new PurchaseFacade();
$facade->sld = 'test';
$facade->tld = 'com';
$order = $query->execute($facade);
var_dump($order);
How can I help you explore Laravel packages today?