ynizon / dareboost-php
Dareboost PHP Toolkit
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ynizon/dareboost-php
This package is auto-updated.
Last update: 2025-09-28 00:13:30 UTC
README
For Dareboost API PHP library v0.5.
You have 3 files: DareboostBase is for call the API... DareboostAPI is the list of functions available with the API (see https://www.dareboost.com/en/documentation-api) DareboostCustomAPI is a list of custom functions i need.
Define your dareboost token api on your config/app.php DAREBOOST_KEY
Then, use like this: use DareboostPHP\DareboostBase; use DareboostPHP\DareboostAPI; use DareboostPHP\DareboostCustomAPI;
$api = new DareboostCustomAPI(config("app.DAREBOOST_KEY"));
//Launch Analysis
$params = array("url"=>"https://www.gameandme.fr");
$json = $api->analysisLaunch($params);
//Get a result from a url $tab = $api->getAnalysisReportForUrl("https://www.gameandme.fr");
Take care with this error: Too many simultaneous analysis. You have reached the maximum number of simultaneous analysis for your profile. You can upgrade your offer or wait until the current analysis is completed.
Contact: ynizon@gmail.com