madeITBelgium / Domainbox by MadeITBelgium

PHP Laravel Domainbox SDK
84
0
4
Package Data
Maintainer Username: MadeITBelgium
Maintainer Contact: tjebbe.lievens@madeit.be (Tjebbe Lievens - Made I.T.)
Package Create Date: 2017-06-29
Package Last Update: 2020-10-01
Language: PHP
License: LGPL-3.0-or-later
Last Refreshed: 2024-05-01 15:05:05
Package Statistics
Total Downloads: 84
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 4
Total Forks: 5
Total Open Issues: 1

PHP Laravel Domainbox API

Build Status Coverage Status Latest Stable Version Latest Unstable Version Total Downloads License

With this Laravel package you create and update domains from domainbox.com.

Installation

Require this package in your composer.json and update composer.

"madeitbelgium/domainbox": "~0.*"

After updating composer, add the ServiceProvider to the providers array in config/app.php

MadeITBelgium\Domainbox\DomainboxServiceProvider::class,

You can use the facade for shorter code. Add this to your aliases:

'Domainbox' => MadeITBelgium\Domainbox\DomainboxFacade::class,

Documentation

Usage


use MadeITBelgium\Domainbox\Domainbox;

$domainbox = new Domainbox($reseller, $username, $password, $sandbox); //Sandbox by default false

In laravel you can use the Facade

$checkDomainAvailability = Domainbox::domain()->checkDomainAvailability($domainname, $launchPhase = 'GA', $allowOfflineLookups = false, $numberOfRetries = 1); // \MadeITBelgium\Domainbox\Response\DomainAvailable
$checkDomainAvailability->isAvailable();

$checkDomainAvailability = Domainbox::domain()->checkDomainAvailabilityPlus($domainname, $tlds); // Array of \MadeITBelgium\Domainbox\Response\DomainAvailable
$checkDomainAvailability[0]->isAvailable();

Laraval validator

public function store(Request $request) {
    $this->validate($request, ['domainname' => 'domainname|domainavailable']);
}

The complete documentation can be found at: http://www.madeit.be/

Support

Support github or mail: tjebbe.lievens@madeit.be

Contributing

Please try to follow the psr-2 coding style guide. http://www.php-fig.org/psr/psr-2/

License

This package is licensed under LGPL. You are free to use it in personal and commercial projects. The code can be forked and modified, but the original copyright author should always be included!