Package Data | |
---|---|
Maintainer Username: | Ronster |
Maintainer Contact: | ronsterdj@gmail.com (Ronnie Visser) |
Package Create Date: | 2013-11-07 |
Package Last Update: | 2013-11-28 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-30 15:14:37 |
Package Statistics | |
---|---|
Total Downloads: | 49 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 5 |
Total Open Issues: | 1 |
Install this package through Composer. To your composer.json
file, add:
"require-dev": {
"Ronster/Salesforce": "dev-master"
}
Next, run composer update
to download it.
Finally, add the service provider to app/config/app.php
, within the providers
array.
'providers' => array(
// ...
'Ronster\Salesforce\SalesforceServiceProvider'
)
Run php artisan config:publish ronster/salesforce
to publish the package config file. Add your username, password, security token(optional) and the absolute path to your enterprise/partner WSDL file which can be obtained from your Salesforce Org.
This package is a laravel 4 port of the PHPforce/soap-client library. Instructions can be found here: PHPForce/soap-client
Salesforce::query('select Name, SystemModstamp from Account limit 5');