laravel_crm/capsulecrm
Composer 安装命令:
composer require laravel_crm/capsulecrm
包简介
Laravel Package for capsule CRM integration
README 文档
README
laravelCapsuleCRM
Agenda
Installation
- Install from composer
composer require laravel_crm/capsulecrm
- Add Service Provider in
config/app.phpadd service provider class
'providers' => [ CapsuleCRM\CapsuleServiceProvider::class, ];
- And add alias in
config/app.phpinaliasesarray add
'aliases' => [ 'CapsuleCRM'=>CapsuleCRM\Facades\CapsuleCRM::class, ];
- Publish config file by
php artisan vendor:publish --tag=capsuleCRM --force
Configuration
- Add in
.envfile three keys of capsulecrm :CAPSULECRM_TOKENget it from capsuleMy Preferences->API Authentication Tokens->Personal Access TokensCAPSULECRM_APP_NAMECAPSULECRM_BASE_URIdefault ishttps://api.capsulecrm.com/api/v2/
Usage
Common usage :
CapsuleCRM::{entity name}()
Example :
CapsuleCRM::party()
- Party: Parties represent the People and Organisations on your Capsule account. His Object is :
CapsuleCRM::party();
for crud operations :
- Create new account :
$data = [ 'name' => 'youssef daood', 'email' => 'ydaood@arkdev.net', 'tags' => ['register','subscribe'] ]; CapsuleCRM::party()->create($data);
- Resgister account:
$data = [ 'name' => 'youssef daood', 'email' => 'ydaood@arkdev.net' ]; $tag = 'subscribe'; CapsuleCRM::party()->register($data, $tag);
- Update account:
$id = 1; // id of capsule $data = [ 'name' => 'youssef' ]; CapsuleCRM::party()->update($id, $data);
- validateUniqueEmail:
$email = 'ydaood@arkdev.net'; CapsuleCRM::party()->validateUniqueEmail($email);
- Search
$filter = 'youssef'; CapsuleCRM::party()->search($filter);
- Fetch one party
$party_id=123456; $party = CapsuleCRM::party()->fetch($party_id);
- Get all person objects for a party
$party_id=123456; $people = CapsuleCRM::party()->people($party_id);
laravel_crm/capsulecrm 适用场景与选型建议
laravel_crm/capsulecrm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 310 次下载、GitHub Stars 达 3, 最近一次更新时间为 2018 年 01 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「crm」 「laravel」 「capsule」 「capsulecrm」 「laravelcrm」 「capsule crm」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 laravel_crm/capsulecrm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 laravel_crm/capsulecrm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 laravel_crm/capsulecrm 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP client for the Salesforce SOAP API
A Laravel Eloquent ORM/Capsule service provider for Silex
Command-line utility for Vtiger CRM.
Capsule is designed to make it easier to manage dependencies and objects, while improving encapsulation and ensuring code quality.
Library for Kommo (AmoCRM)
Laravel Illuminate Capsule configured for WordPress.
统计信息
- 总下载量: 310
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-01-31