Duncan
Duncan

Reputation: 61

Using Symfony2 with Salesforce PHP toolkit

I want to use the Salesforce php toolkit(https://github.com/developerforce/Force.com-Toolkit-for-PHP) within Symfony2. Has anyone had experience doing this?

What is the best route to take? A bundle, entity or service?

If I just namespace my initial Salesforce.php, which will provide the connection to Salesforce and leave the toolkits require_once files for its other classes. Then, I guess, any bundles I write can use this namesspace and directly use this connection throughout my app?

Sorry this is a bit vague, any guidance would be appreciated!

Upvotes: 0

Views: 1389

Answers (1)

vdumontier
vdumontier

Reputation: 46

I haven't tested but you can take a look at https://github.com/phpforce/salesforce-bundle

Upvotes: 1

Related Questions