madeitbelgium / domainbox
PHP Laravel Domainbox SDK
Fund package maintenance!
madeitbelgium
Requires
- php: >=5.6
- illuminate/support: 5.*|^6.0|^7.0|8.*
Requires (Dev)
- illuminate/container: 5.*|^6.0|^7.0|8.*
- illuminate/validation: 5.*|^6.0|^7.0|8.*
- mockery/mockery: 0.9
- phpunit/phpunit: 5.7.*|6.2.*
This package is auto-updated.
Last update: 2024-10-29 04:36:39 UTC
README
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!