PHPackages                             surajadsul/php-salesforce-rest-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. surajadsul/php-salesforce-rest-api

ActiveLibrary

surajadsul/php-salesforce-rest-api
==================================

02

Since Jun 6Pushed 2y agoCompare

[ Source](https://github.com/SurajAdsul/php-salesforce-rest-api)[ Packagist](https://packagist.org/packages/surajadsul/php-salesforce-rest-api)[ RSS](/packages/surajadsul-php-salesforce-rest-api/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Php Salesforce Rest Api
=======================

[](#php-salesforce-rest-api)

`Bijesh Shrestha` `bjsmasth` `bjsmasth@gmail.com` `bjsmasth` `php rest api`

Install
-------

[](#install)

Via Composer

```
composer require bjsmasth/php-salesforce-rest-api
```

Getting Started
===============

[](#getting-started)

Setting up a Connected App

1. Log into to your Salesforce org
2. Click on Setup in the upper right-hand menu
3. Under Build click `Create > Apps `
4. Scroll to the bottom and click `New` under Connected Apps.
5. Enter the following details for the remote application:
    - Connected App Name
    - API Name
    - Contact Email
    - Enable OAuth Settings under the API dropdown
    - Callback URL
    - Select access scope (If you need a refresh token, specify it here)
6. Click Save

After saving, you will now be given a Consumer Key and Consumer Secret. Update your config file with values for `consumerKey` and `consumerSecret`

Setup
=====

[](#setup)

Authentication

```
    $options = [
        'grant_type' => 'password',
        'client_id' => 'CONSUMERKEY',
        'client_secret' => 'CONSUMERSECRET',
        'username' => 'SALESFORCE_USERNAME',
        'password' => 'SALESFORCE_PASSWORD AND SECURITY_TOKEN'
    ];

    $salesforce = new bjsmasth\Salesforce\Authentication\PasswordAuthentication($options);
    $salesforce->authenticate();

    $access_token = $salesforce->getAccessToken();
    $instance_url = $salesforce->getInstanceUrl();

    Change Endpoint

    $salesforce = new bjsmasth\Salesforce\Authentication\PasswordAuthentication($options);
    $salesforce->setEndpoint('https://test.salesforce.com/');
    $salesforce->authenticate();

    $access_token = $salesforce->getAccessToken();
    $instance_url = $salesforce->getInstanceUrl();
```

Query

```
    $query = 'SELECT Id,Name FROM ACCOUNT LIMIT 100';

    $crud = new \bjsmasth\Salesforce\CRUD();
    $crud->query($query);
```

Create

```

    $data = [
       'Name' => 'some name',
    ];

    $crud->create('Account', $data);  #returns id
```

Update

```
    $new_data = [
       'Name' => 'another name',
    ];

    $crud->update('Account', $id, $new_data); #returns status_code 204

```

Upsert

```
    $new_data = [
       'Name' => 'another name',
    ];

    $crud->upsert('Account', 'API Name/ Field Name', 'value', $new_data); #returns status_code 204 or 201

```

Delete

```
    $crud->delete('Account', $id);
```

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

Top contributor holds 88.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/efd9a09c9685fb004c8e1dbc8f24d731fd36ff898603f1b5bb1dbae2d5537ad3?d=identicon)[SurajAdsul](/maintainers/SurajAdsul)

---

Top Contributors

[![bjsmasth](https://avatars.githubusercontent.com/u/5401401?v=4)](https://github.com/bjsmasth "bjsmasth (16 commits)")[![laszlof](https://avatars.githubusercontent.com/u/1486486?v=4)](https://github.com/laszlof "laszlof (1 commits)")[![mikeyudin](https://avatars.githubusercontent.com/u/981848?v=4)](https://github.com/mikeyudin "mikeyudin (1 commits)")

### Embed Badge

![Health badge](/badges/surajadsul-php-salesforce-rest-api/health.svg)

```
[![Health](https://phpackages.com/badges/surajadsul-php-salesforce-rest-api/health.svg)](https://phpackages.com/packages/surajadsul-php-salesforce-rest-api)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
