dev-master
9999999-devA Laravel 4 package for the PHPForce Salesforce library
The Requires
- php >=5.3.0
- illuminate/support 4.0.*
- phpforce/soap-client *
by Ronnie Visser
laravel soap laravel4 salesforce crm force.com
A Laravel 4 package for the PHPForce Salesforce library
Install this package through Composer. To your composer.json
file, add:, (*1)
"require-dev": { "Ronster/Salesforce": "dev-master" }
Next, run composer update
to download it., (*2)
Finally, add the service provider to app/config/app.php
, within the providers
array., (*3)
'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., (*4)
This package is a laravel 4 port of the PHPforce/soap-client library. Instructions can be found here: PHPForce/soap-client, (*5)
Salesforce::query('select Name, SystemModstamp from Account limit 5');
A Laravel 4 package for the PHPForce Salesforce library
laravel soap laravel4 salesforce crm force.com