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-11-21 03:01:25 |
Package Statistics | |
---|---|
Total Downloads: | 84 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 4 |
Total Forks: | 5 |
Total Open Issues: | 1 |
With this Laravel package you create and update domains from domainbox.com.
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,
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();
public function store(Request $request) {
$this->validate($request, ['domainname' => 'domainname|domainavailable']);
}
The complete documentation can be found at: http://www.madeit.be/
Support github or mail: tjebbe.lievens@madeit.be
Please try to follow the psr-2 coding style guide. http://www.php-fig.org/psr/psr-2/
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!