PHPackages                             groupdocscloud/groupdocs-editor-cloud - 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/groupdocs-editor-cloud

ActiveLibrary[API Development](/categories/api)

groupdocscloud/groupdocs-editor-cloud
=====================================

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

25.7(10mo ago)1662[2 issues](https://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-php/issues)[2 PRs](https://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-php/pulls)MITPHPPHP &gt;=8.2

Since Dec 3Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-php)[ Packagist](https://packagist.org/packages/groupdocscloud/groupdocs-editor-cloud)[ Docs](https://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-php)[ RSS](/packages/groupdocscloud-groupdocs-editor-cloud/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (6)Dependencies (2)Versions (9)Used By (0)

GroupDocs.Editor Cloud SDK for PHP
==================================

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

This repository contains GroupDocs.Editor Cloud SDK for PHP source code. This SDK allows you to work with GroupDocs.Editor Cloud REST APIs in your PHP applications.

GroupDocs.Editor Cloud allows you to edit documents across wide range of supported document types:

- Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTM, DOTX, RTF, FlatOpc, WordML, TXT;
- Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV;
- Microsoft PowerPoint presentations - PPT, PPTX, PPTM, POT, PPS etc.;
- Open Document formats - ODT, OTT, ODS, ODP, OTP;
- Markup - HTML, MHTML, XML.

Dependencies
------------

[](#dependencies)

- PHP 5.5 or later

Authorization
-------------

[](#authorization)

To use SDK you need AppSID and AppKey authorization keys. You can get your AppSID and AppKey at  (free registration is required).

Installation &amp; Usage
------------------------

[](#installation--usage)

### 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-editor-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-editor-cloud/groupdocs-editor-cloud-php.git"
    }
  ],
  "require": {
    "groupdocscloud/groupdocs-editor-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-editor-cloud-php/vendor/autoload.php');
```

Tests
-----

[](#tests)

To run the unit tests set your AppSID and AppKey in [json.config](tests/GroupDocs/Editor/config.json) and execute following commands:

```
php composer.phar install
./vendor/bin/phpunit

```

Getting Started
---------------

[](#getting-started)

Please follow the [installation procedure](#installation--usage) and then run the following:

```
