rickkuilman/digital-humani-php-sdk
Composer 安装命令:
composer require rickkuilman/digital-humani-php-sdk
包简介
PHP SDK for DigitalHumani's RaaS (Reforestation-as-a-Service)
README 文档
README
Unofficial PHP SDK for DigitalHumani's RaaS (Reforestation-as-a-Service)
Installation
You can install the package via composer:
composer require rickkuilman/digital-humani-php-sdk
Preparation
- Create a sandbox or production account on DigitalHumani.com.
- Grab your Enterprise ID and API Key from the "Developer" tab.
Basic Usage
// Create new sandbox instance $digitalHumani = new DigitalHumani($apiKey, $enterpriseId); // Plant a tree $digitalHumani->plantTree('rick@example.com'); // Count trees planted $digitalHumani->treeCount();
Using the DigitalHumani instance you may perform multiple actions as well as retrieve the different
resources DigitalHumani's API provides:
Managing Enterprises
// Get current Enterprise $enterprise = $digitalHumani->enterprise(); // .. or get Enterprise by ID $enterprise = $digitalHumani->enterprise('4c6e672d'); // 🌳 Count planted trees $enterprise->treeCount(); // 🌳 Count planted trees since 2021-01-01 $enterprise->treeCount(Carbon::make('2021-01-01')); // 🌳 Count planted trees between 2021-01-01 and 2021-08-01 $enterprise->treeCount(Carbon::make('2021-01-01'), Carbon::make('2022-08-01')); // 🌳 Count planted trees for specific month $enterprise->treeCountForMonth(Carbon::make('2021-08')); // 🌳 Plant tree $enterprise->plantTree('rick@example.com')
Notice for lines with 🌳 icon:
Since the Enterprise ID is available in the DigitalHumani instance, you may replace
$enterprisewith$digitalHumaniand expect the same results.
Managing Projects
// Get list of all Projects $projects = $digitalHumani->projects(); // Get second project $project = $projects[1]; // .. or get Project by ID $project = $digitalHumani->project('81818182'); // Plant a tree for this project $project->plantTree('rick@example.com', 3);
Managing Trees
// Plant one tree $tree = $digitalHumani->plantTree('rick@example.com'); // Plant ten trees $trees = $digitalHumani->plantTree('rick@example.com', 10); // Get UUID of tree(s) $uuid = $tree->uuid; // Get details of a planted tree (or trees) by ID $digitalHumani->tree('9f05511e-56c6-40f7-b5ca-e25567991dc1'); // Count trees for a user $digitalHumani->countTreesPlantedByUser('rick@example.com');
Switch to production environment
// Set the third parameter to "true" $digitalHumani = new DigitalHumani($apiKey, $enterpriseId, true); // ..or use a method $digitalHumani->useProductionEnvironment();
Overrule (default) project or enterprise
Many methods allow additional parameters to overrule the (default) project or enterprise:
// Create new sandbox instance, leaving out the enterpriseId $digitalHumani = new DigitalHumani($apiKey); // Plant a tree for a specific project and enterprise $digitalHumani->plantTree('rick@example.com', 1, $projectId, $enterpriseId); // Set a default enterprise afterwards, which will be used for all requests from now on $digitalHumani->setEnterprise('11111111'); // Plant a tree for a specific project using the default enterprise from above $digitalHumani->plantTree('rick@example.com', 1, $projectId); // Count trees of a specific month for a specific enterprise, overruling the default $digitalHumani->treeCountForMonth(Carbon::make('2021-10'), '99999999');
Happy planting! 🌳
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email rickkuilman@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
PHP Package Boilerplate
This package was generated using the PHP Package Boilerplate by Beyond Code.
rickkuilman/digital-humani-php-sdk 适用场景与选型建议
rickkuilman/digital-humani-php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 118 次下载、GitHub Stars 达 6, 最近一次更新时间为 2021 年 10 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「rickkuilman」 「digital-humani-php-sdk」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rickkuilman/digital-humani-php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rickkuilman/digital-humani-php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 118
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-05