PHPackages                             coreproc/enom-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. coreproc/enom-sdk

ActiveLibrary[API Development](/categories/api)

coreproc/enom-sdk
=================

4568[1 issues](https://github.com/CoreProc/enom-sdk-php/issues)[2 PRs](https://github.com/CoreProc/enom-sdk-php/pulls)PHP

Since Dec 4Pushed 9y ago5 watchersCompare

[ Source](https://github.com/CoreProc/enom-sdk-php)[ Packagist](https://packagist.org/packages/coreproc/enom-sdk)[ RSS](/packages/coreproc-enom-sdk/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (2)Used By (0)

Installation
============

[](#installation)

Add this on your `composer.json`:

```
"require": {
    "coreproc/enom-sdk-php": "dev-master"
},
"repositories": [
    {
        "type": "vcs",
        "url":  "https://git.coreproc.ph/coreproc/enom-sdk-php.git"
    }
]

```

Usage
=====

[](#usage)

Laravel 5.x users
-----------------

[](#laravel-5x-users)

Add this line in the `providers` array in `config/app.php`:

```
'providers' => [
    // Other Service Providers

    Coreproc\Enom\Providers\EnomServiceProvider::class,
],

```

Add these lines in the `facades` array in `config/app.php`:

```
'facades' => [
    // Other Facades

    'Tld' => Coreproc\Enom\Facades\Tld::class
    'Domain' => Coreproc\Enom\Facades\Domain::class,
],

```

Then run this command to publish the config file:

```
php artisan vendor:publish --provider="Coreproc\Enom\Providers\EnomServiceProvider"

```

Set up your credentials on the published file `config/enom.php`:

```
