PHPackages                             coderubix/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. coderubix/php-salesforce-rest-api

ActiveLibrary

coderubix/php-salesforce-rest-api
=================================

00PHP

Since Jul 10Pushed 1y agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Php Salesforce Rest Api - Credit
================================

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

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

Install
-------

[](#install)

Via Composer

```
composer require coderubix/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();
    $result = $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

Maintenance27

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 76.2% 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/f85d0845de47be3aaaf3709a8a14fae33c16d9685a3f85eec5aae0fbedaf69ba?d=identicon)[coderubix](/maintainers/coderubix)

---

Top Contributors

[![bjsmasth](https://avatars.githubusercontent.com/u/5401401?v=4)](https://github.com/bjsmasth "bjsmasth (16 commits)")[![developer-ashok](https://avatars.githubusercontent.com/u/14976868?v=4)](https://github.com/developer-ashok "developer-ashok (2 commits)")[![iansltx](https://avatars.githubusercontent.com/u/472804?v=4)](https://github.com/iansltx "iansltx (1 commits)")[![laszlof](https://avatars.githubusercontent.com/u/1486486?v=4)](https://github.com/laszlof "laszlof (1 commits)")[![modir](https://avatars.githubusercontent.com/u/2803913?v=4)](https://github.com/modir "modir (1 commits)")

### Embed Badge

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

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

PHPackages © 2026

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