PHPackages                             fcs/fcs-sdk-php - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. fcs/fcs-sdk-php

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

fcs/fcs-sdk-php
===============

FCS SDK for PHP

1.4.1(1y ago)012.1k↓27.8%4PHPPHP &gt;=5.4

Since Dec 5Pushed 1y ago3 watchersCompare

[ Source](https://github.com/FirebrandTech/fcs-sdk-php)[ Packagist](https://packagist.org/packages/fcs/fcs-sdk-php)[ RSS](/packages/fcs-fcs-sdk-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)Dependencies (3)Versions (20)Used By (0)

FCS SDK for PHP
===============

[](#fcs-sdk-for-php)

The FCS SDK for PHP enables PHP developers to build solutions with Firebrand Cloud Services (FCS). With the FCS SDK for PHP, developers can get started in minutes by using [Composer](http://getcomposer.org).

This new version is built on top of [Guzzle](http://guzzlephp.org), a PHP HTTP client framework, which provides increased performance. The FCS SDK for PHP requires PHP 5.4.

Before Using the SDK
--------------------

[](#before-using-the-sdk)

There is some basic information you need to know before you get started using the SDK.

### Signing Up for FCS

[](#signing-up-for-fcs)

First your organization must be setup with Firebrand Technologies Title Management and Content Services.

### Configuration Settings for FCS

[](#configuration-settings-for-fcs)

Your FCS Configuration Settings will be sent to your organization.

Installing the SDK
------------------

[](#installing-the-sdk)

Using [Composer](http://getcomposer.org) is the recommended way to install the FCS SDK for PHP . Composer is dependency management tool for PHP that allows you to declare the dependencies your project needs and installs them into your project. In order to use the FCS SDK for PHP through Composer, you must do the following:

1. Add `"fcs/fcs-sdk-php"` as a dependency in your project's `composer.json` file.

    ```
        {
            "require": {
                "fcs/fcs-sdk-php": "*"
            }
        }
    ```
2. Download and install Composer.

    ```
     curl -s "http://getcomposer.org/installer" | php

    ```
3. Install your dependencies.

    ```
     php composer.phar install

    ```
4. Require Composer's autoloader.

    Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process.

    ```
     require '/path/to/sdk/vendor/autoload.php';

    ```

You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at [getcomposer.org](http://getcomposer.org).

Using the SDK
-------------

[](#using-the-sdk)

### Quick Start

[](#quick-start)

To get started downloading a file from FCS you can do the following:

```
