Skip to content

Commit cfbd2d4

Browse files
1 parent 25c0b2a commit cfbd2d4

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,48 @@ Directory | Description
1515
--------- | -----------
1616
[Examples](Examples) | A collection of PHP Cloud SDK examples that help you learn the product features
1717

18+
19+
## Dependencies
20+
- PHP 5.5 or later
21+
22+
## Authorization
23+
To use SDK you need AppSID and AppKey authorization keys. You can get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
24+
25+
## Installation & Usage
26+
### Composer
27+
28+
The package is available at [Packagist](https://packagist.org/) and it can be installed via [Composer](http://getcomposer.org/) by executing following command:
29+
```
30+
composer require groupdocscloud/groupdocs-viewer-cloud
31+
```
32+
33+
Or you can install SDK via [Composer](https://packagist.org/packages/groupdocscloud/groupdocs-viewer-cloud) directly from this repository, add the following to `composer.json`:
34+
35+
```
36+
{
37+
"repositories": [
38+
{
39+
"type": "git",
40+
"url": "https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-php.git"
41+
}
42+
],
43+
"require": {
44+
"groupdocscloud/groupdocs-viewer-cloud": "*"
45+
}
46+
}
47+
```
48+
49+
Then run `composer install`
50+
51+
### Manual Installation
52+
53+
Clone or download this repository, then run `composer install` in the root directory to install dependencies and include `autoload.php` into your code file:
54+
55+
```php
56+
require_once('/path/to/groupdocs-viewer-cloud-php/vendor/autoload.php');
57+
```
58+
59+
1860
## Resources
1961

2062
+ **Website:** [www.GroupDocs.cloud](http://www.GroupDocs.cloud)

0 commit comments

Comments
 (0)