madeitbelgium/domainbox
Composer 安装命令:
composer require madeitbelgium/domainbox
包简介
PHP Laravel Domainbox SDK
README 文档
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!
统计信息
- 总下载量: 85
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2017-06-29