Skip to content

Commit 8635777

Browse files
Updated README.md
1 parent 1aba3a5 commit 8635777

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![](https://img.shields.io/badge/api-v3.0-lightgrey) ![Packagist Version](https://img.shields.io/packagist/v/aspose/tasks-sdk-php) ![Packagist Downloads](https://img.shields.io/packagist/dt/aspose/tasks-sdk-php) ![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/aspose/tasks-sdk-php) [![GitHub license](https://img.shields.io/github/license/aspose-tasks-cloud/aspose-tasks-cloud-php)](https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-php/blob/master/LICENSE) ![GitHub last commit](https://img.shields.io/github/last-commit/Aspose-tasks-Cloud/aspose-tasks-cloud-php)
22

3-
# Manipulate Project Files via PHP Cloud REST API
3+
# Manipulate MS Project Files in PHP via Cloud REST API
44

5-
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in the Cloud. [Aspose.Tasks Cloud SDK for Go](https://products.aspose.cloud/tasks/go) wraps the REST API to make it easier for the developers to integrate Task Management features in their own cloud-based Go applications.
5+
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in PHP. [Aspose.Tasks Cloud SDK for PHP](https://products.aspose.cloud/tasks/php) wraps the REST API to make it easier for the developers to integrate MS Project Task Management features in their own cloud-based PHP applications.
66

77
Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/taskscloud/Developer+Guide) & [API Reference](https://apireference.aspose.cloud/tasks/) to know all about Aspose.Tasks Cloud API.
88

@@ -67,7 +67,7 @@ require_once('vendor/autoload.php');
6767
```
6868
See [composer.json](composer.json) for details about the referenced packages.
6969

70-
## Convert MPP to CSV in PHP
70+
## Convert MS Project MPP to PDF in PHP
7171

7272
```php
7373
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
@@ -83,8 +83,8 @@ See [composer.json](composer.json) for details about the referenced packages.
8383
$upload_result = $api->uploadFile($Path = realpath(__DIR__ . '/../../..') . '/TestData/' . $fullName, $fullName);
8484

8585
// save as pdf file
86-
$request = new Requests\GetTaskDocumentWithFormatRequest($fullName, Model\ProjectFileFormat::CSV, false));
87-
$result = $api->getTaskDocumentWithFormat($request);
86+
$request = new Requests\GetReportPdfRequest($fullName, Model\ReportType::MILESTONES, self::$storageName, $folder));
87+
$result = $api->getReportPdf($request);
8888
```
8989

9090
## Aspose.Tasks Cloud SDKs in Popular Languages

0 commit comments

Comments
 (0)