PHPackages                             groupdocscloud/conversion-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. [API Development](/categories/api)
4. /
5. groupdocscloud/conversion-sdk-php

Abandoned → [groupdocscloud/groupdocs-conversion-cloud](/?search=groupdocscloud%2Fgroupdocs-conversion-cloud)Library[API Development](/categories/api)

groupdocscloud/conversion-sdk-php
=================================

This repository contains GroupDocs.Conversion Cloud SDK for PHP source code.

26.4(1mo ago)181[1 PRs](https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php/pulls)MITPHPPHP &gt;=8.2

Since Apr 26Pushed 1mo ago3 watchersCompare

[ Source](https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php)[ Packagist](https://packagist.org/packages/groupdocscloud/conversion-sdk-php)[ Docs](https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php)[ RSS](/packages/groupdocscloud-conversion-sdk-php/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (10)Dependencies (4)Versions (42)Used By (0)

GroupDocs.Conversion Cloud SDK for PHP
======================================

[](#groupdocsconversion-cloud-sdk-for-php)

This repository contains GroupDocs.Conversion Cloud SDK for PHP source code. This SDK has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.

Installation
------------

[](#installation)

### Composer

[](#composer)

The package is available at [Packagist](https://packagist.org/) and it can be installed via [Composer](http://getcomposer.org/) by executing following command:

```
composer require groupdocscloud/groupdocs-conversion-cloud
```

Or you can install SDK via [Composer](http://getcomposer.org/) directly from this repository, add the following to `composer.json`:

```
{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php.git"
    }
  ],
  "require": {
    "groupdocscloud/groupdocs-conversion-cloud": "*"
  }
}
```

Then run `composer install`

### Manual Installation

[](#manual-installation)

Clone or download this repository, then run `composer install` in the root directory to install dependencies and include `autoload.php` into your code file:

```
require_once('/path/to/groupdocs-conversion-cloud-php/vendor/autoload.php');
```

### Create an account

[](#create-an-account)

Creating an account is very simple. Go to Dashboard to create a free account. We’re using Single Sign On across our websites, therefore, if you already have an account with our services, you can use it to also access the [Dashboard](https://dashboard.groupdocs.cloud).

### Create an API client app

[](#create-an-api-client-app)

Before you can make any requests to GroupDocs Cloud API you need to get a Client Id and a Client Secret. This will be used to invoke GroupDocs Cloud API. You can get it by creating a new [Application](https://dashboard.groupdocs.cloud/applications).

Convert document
----------------

[](#convert-document)

```
