Download the PHP package phpforce/soap-client without Composer

On this page you can find all versions of the php package phpforce/soap-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package soap-client

Build Status
Scrutinizer Code Quality

I’m looking for maintainers!

PHPForce Soap Client: a PHP client for the Salesforce SOAP API

Introduction

This library is a client for the Salesforce SOAP API, and intended as a replacement for the Force.com Tookit for PHP.

Features

This library’s features include the following.

Installation

This library is available on Packagist. The recommended way to install this library is through Composer:

Usage

The client

Use the client to query and manipulate your organisation’s Salesforce data. First construct a client using the builder:

SOQL queries

This will fetch five accounts from Salesforce and return them as a RecordIterator. You can now iterate over the results. The account’s SystemModstamp is returned as a \DateTime object:

One-to-many relations (subqueries)

Results from subqueries are themselves returned as record iterators. So:

Fetching large numbers of records

If you issue a query that returns over 2000 records, only the first 2000 records will be returned by the Salesforce API. Using the queryLocator, you can then fetch the following results in batches of 2000. The record iterator does this automatically for you:

Logging

To enable logging for the client, call withLog() on the builder. For instance when using Monolog:

All requests to the Salesforce API, as well as the responses and any errors that it returns, will now be logged.


All versions of soap-client with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
phpforce/common Version dev-master
psr/log Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package phpforce/soap-client contains the following files

Loading the files please wait ....