├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Authentication ├── AuthenticationInterface.php └── PasswordAuthentication.php ├── Client.php ├── Exception ├── RequestRefused.php ├── ResourceNotFound.php ├── Salesforce.php ├── SalesforceAuthentication.php ├── SalesforceFields.php ├── SalesforceNoResults.php ├── SalesforceServerError.php ├── SessionExpired.php └── UnsupportedFormat.php ├── QueryIterator.php └── QueryResults.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/composer.json -------------------------------------------------------------------------------- /src/Authentication/AuthenticationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Authentication/AuthenticationInterface.php -------------------------------------------------------------------------------- /src/Authentication/PasswordAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Authentication/PasswordAuthentication.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Exception/RequestRefused.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/RequestRefused.php -------------------------------------------------------------------------------- /src/Exception/ResourceNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/ResourceNotFound.php -------------------------------------------------------------------------------- /src/Exception/Salesforce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/Salesforce.php -------------------------------------------------------------------------------- /src/Exception/SalesforceAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/SalesforceAuthentication.php -------------------------------------------------------------------------------- /src/Exception/SalesforceFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/SalesforceFields.php -------------------------------------------------------------------------------- /src/Exception/SalesforceNoResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/SalesforceNoResults.php -------------------------------------------------------------------------------- /src/Exception/SalesforceServerError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/SalesforceServerError.php -------------------------------------------------------------------------------- /src/Exception/SessionExpired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/SessionExpired.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/Exception/UnsupportedFormat.php -------------------------------------------------------------------------------- /src/QueryIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/QueryIterator.php -------------------------------------------------------------------------------- /src/QueryResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmo/salesforce-rest-api/HEAD/src/QueryResults.php --------------------------------------------------------------------------------