Skip to content

Commit 4f24c6a

Browse files
committed
Updated sources
1 parent 3e4ec2e commit 4f24c6a

6 files changed

Lines changed: 424 additions & 14 deletions

File tree

README.md

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
# GroupDocs.Conversion Cloud SDK for PHP
2+
23
This repository contains GroupDocs.Conversion Cloud SDK for PHP source code. This SDK allows you to work with GroupDocs.Conversion Cloud REST APIs in your PHP applications.
34

45
## Dependencies
6+
57
- PHP 5.5 or later
68

79
## Authorization
8-
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).
10+
11+
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).
912

1013
## Installation & Usage
14+
1115
### Composer
1216

1317
The package is available at [Packagist](https://packagist.org/) and it can be installed via [Composer](http://getcomposer.org/) by executing following command:
14-
```
18+
19+
```shell
1520
composer require groupdocscloud/groupdocs-conversion-cloud
16-
```
21+
```
1722

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

20-
```
25+
```javascript
2126
{
2227
"repositories": [
2328
{
@@ -45,12 +50,12 @@ require_once('/path/to/groupdocs-conversion-cloud-php/vendor/autoload.php');
4550

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

48-
```
49-
php composer.phar install
50-
./vendor/bin/phpunit
53+
```shell
54+
php composer.phar install ./vendor/bin/phpunit
5155
```
5256

5357
## Getting Started
58+
5459
Please follow the [installation procedure](#installation--usage) and then run the following:
5560

5661
```php
@@ -63,7 +68,7 @@ $configuration = new GroupDocs\Conversion\Configuration();
6368
$configuration->setAppSid("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
6469
$configuration->setAppKey("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
6570

66-
$api = new GroupDocs\Conversion\InfoApi($configuration);
71+
$api = new GroupDocs\Conversion\InfoApi($configuration);
6772

6873
try {
6974
$request = new GroupDocs\Conversion\Model\Requests\GetSupportedConversionTypesRequest();
@@ -81,6 +86,17 @@ try {
8186
```
8287

8388
## Licensing
89+
8490
GroupDocs.Conversion Cloud SDK for PHP is licensed under [MIT License](LICENSE).
8591

86-
[Home](https://www.groupdocs.cloud/) | [Product Page](https://products.groupdocs.cloud/conversion/php) | [Docs](https://docs.groupdocs.cloud/conversion/) | [Demos](https://products.groupdocs.app/conversion/family) | [API Reference](https://apireference.groupdocs.cloud/conversion/) | [Examples](https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php-samples) | [Blog](https://blog.groupdocs.cloud/category/conversion/) | [Free Support](https://forum.groupdocs.cloud/c/conversion) | [Free Trial](https://purchase.groupdocs.cloud/trial)
92+
## Resources
93+
94+
+[**Website**](https://www.groupdocs.cloud)
95+
+[**Product Home**](https://products.groupdocs.cloud/conversion)
96+
+[**Documentation**](https://docs.groupdocs.cloud/conversion)
97+
+[**Free Support Forum**](https://forum.groupdocs.cloud/c/conversion)
98+
+[**Blog**](https://blog.groupdocs.cloud/category/conversion)
99+
100+
## Contact Us
101+
102+
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/conversion).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "This repository contains GroupDocs.Conversion Cloud SDK for PHP source code.",
33
"name": "groupdocscloud/groupdocs-conversion-cloud",
4-
"version": "20.3",
4+
"version": "20.11",
55
"license": "MIT",
66
"type": "library",
77
"keywords": [

composer.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GroupDocs/Conversion/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Configuration
9595
* Version of client SDK
9696
*
9797
*/
98-
protected $clientVersion = '20.3';
98+
protected $clientVersion = '20.11';
9999

100100
/*
101101
* Constructor
@@ -290,7 +290,7 @@ public function getClientName()
290290
}
291291

292292
/*
293-
* Gets client version, default value is '20.3'
293+
* Gets client version, default value is '20.11'
294294
*
295295
*/
296296
public function getClientVersion()
@@ -308,7 +308,7 @@ public static function toDebugReport()
308308
$report = 'PHP SDK (GroupDocs\Conversion) Debug Report:' . PHP_EOL;
309309
$report .= ' OS: ' . php_uname() . PHP_EOL;
310310
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
311-
$report .= ' SDK Package Version: 20.3' . PHP_EOL;
311+
$report .= ' SDK Package Version: 20.11' . PHP_EOL;
312312
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
313313

314314
return $report;

0 commit comments

Comments
 (0)