elcweb/salesforce-bundle

该包已被废弃,不再维护。未建议替代包。

允许您轻松访问 Salesforce 对象

安装: 509

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分叉: 1

开放性问题: 0

类型:symfony-bundle

dev-master 2015-12-16 17:31 UTC

This package is auto-updated.

Last update: 2021-09-07 18:49:40 UTC


README

Latest Stable Version Total Downloads

安装

步骤 1:使用 composer 下载

{
    "require": {
        "elcweb/salesforce-bundle": "dev-master"
    }
}

现在告诉 composer 下载该包,运行以下命令

$ php composer.phar update elcweb/salesforce-bundle

步骤 2:启用包

在内核中启用该包

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Elcweb\SalesforceBundle\ElcwebSalesforceBundle(),
    );
}

配置参考

elcweb_salesforce:
    wsdl:     %salesforce_soap_wsdl%
    username: %salesforce_soap_username%
    password: %salesforce_soap_password%
    token:    %salesforce_soap_token%
    ttl:      14400 # ttl in secondes

或者如果您使用 KeyValueStoreBundle

elcweb_salesforce:
    keyvaluestore: true
    ttl:      14400 # ttl in secondes

许可证

此包采用 MIT 许可证。请参阅包中的完整许可证。

Resources/meta/LICENSE

报告问题或功能请求

问题和功能请求在 Github 问题跟踪器 中跟踪。

在报告错误时,最好在基于 Symfony 标准版 的基本项目中重现它,以便包的开发者可以通过简单地克隆它并遵循一些步骤来重现问题。