Download the PHP package fcs/fcs-sdk-php without Composer

On this page you can find all versions of the php package fcs/fcs-sdk-php. 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 fcs-sdk-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.

This new version is built on top of Guzzle, a PHP HTTP client framework, which provides increased performance. The FCS SDK for PHP requires PHP 5.4.

Before Using the SDK

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

Signing Up for FCS

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

Configuration Settings for FCS

Your FCS Configuration Settings will be sent to your organization.

Installing the SDK

Using Composer 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.

  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.

Using the SDK

Quick Start

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

Asset Types

The following is a list of the asset types that can be used in getAssetUriByEan. Auto asset types are used if your account is configured to do Auto DRM conversion. If conversion requests are made manually, the non Auto asset types are used instead.

Asset Type Description
"epub" Unprotected (Open) EPUB
"publisherkindle" Mobi (created by the publisher, rathern than being auto converted from an EPUB)
"pdf" Unprotected (Open) PDF
"tdrmepubauto" Temporarily (55 days) Protected (Adobe DRM) EPUB. Auto converted.
"tdrmpdfauto" Temporarily (55 days) Protected (Adobe DRM) PDF. Auto converted.
"tdrmauto" Temporarily (55 days) Protected (Adobe DRM) asset (EPUB if it exists; PDF otherwise). Auto converted.
"tdrmepub" Temporarily (55 days) Protected (Adobe DRM) EPUB. Manually converted.
"tdrmpdf" Temporarily (55 days) Protected (Adobe DRM) PDF. Manually converted.
"tdrm" Temporarily (55 days) Protected (Adobe DRM) asset (EPUB if it exists; PDF otherwise). Manually converted.
"pdrmepubauto" Permanently Protected (Adobe DRM) EPUB. Auto converted.
"pdrmpdfauto" Permanently Protected (Adobe DRM) PDF. Auto converted.
"pdrmauto" Permanently Protected (Adobe DRM) asset (EPUB if it exists; PDF otherwise). Auto converted.
"pdrmepub" Permanently Protected (Adobe DRM) EPUB. Manually converted.
"pdrmpdf" Permanently Protected (Adobe DRM) PDF. Manually converted.
"pdrm" Permanently Protected (Adobe DRM) asset (EPUB if it exists; PDF otherwise). Manually converted.
"enthrillepub" Enthrill (Social DRM) EPUB. Manually converted.
"enthrillpdf" Enthrill (Social DRM) PDF. Manually converted.
"enthrillepubauto" Enthrill (Social DRM) EPUB. Auto Converted.
"enthrillpdfauto" Enthrill (Social DRM) PDF. Auto Converted.
"ancillaryzip" Unprotected zip file that is associated with a title but ancillary to it.
"ancillarypdf" Unprotected PDF file that is associated with a title but ancillary to it.
"ancillarypdrmpdf" Permanently Protected (Adobe DRM) PDF that is associated with a title but ancillary to it. Auto converted.

All versions of fcs-sdk-php with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
ext-curl Version *
ext-dom Version *
ext-json Version *
guzzlehttp/guzzle Version ^7.4
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 fcs/fcs-sdk-php contains the following files

Loading the files please wait ....