Skip to content

Commit d1a98cc

Browse files
* SDK updated to ver. 19.4 of Aspose.Tasks Cloud.
SDK now switch to a new (v3.0) version of the API, which contains more functionality: 1) [Breaking] Adding a new file now uses POST (instead of PUT) method, the additional path to the file is now included with filename instead of add. argument 2) [Breaking] Error response was revised and now includes more information. 3) New DELETE method was added to remove unused files. The complete list of changes can be found at https://docs.aspose.cloud/display/taskscloud/Aspose.Tasks+Cloud+19.4+Release+Notes
1 parent 90f5514 commit d1a98cc

File tree

221 files changed

+27456
-26166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+27456
-26166
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Aspose.Tasks for Cloud
2-
[Aspose.Tasks for Cloud](https://products.aspose.cloud/tasks/cloud)
1+
# Aspose.Tasks Cloud
2+
[Aspose.Tasks Cloud](https://products.aspose.cloud/tasks/cloud)
33

4-
Aspose.Tasks for Cloud is a REST API for manipulating and converting Microsoft Project documents hosted on cloud platforms. It allows you to work with all aspects of a Project document as well as offers a wide range of export options allowing developers to convert Microsoft Project documents a number of industry standard formats. Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to work with Project documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights.
4+
Aspose.Tasks Cloud is a REST API for manipulating and converting Microsoft Project documents hosted on cloud platforms. It allows you to work with all aspects of a Project document as well as offers a wide range of export options allowing developers to convert Microsoft Project documents a number of industry standard formats. Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to work with Project documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights.
55

66
This repository contains Aspose.Tasks Cloud SDK for PHP source code. This SDK allows you to work with Aspose.Tasks Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.
77

88
To use these SDK, you will need App SID and App Key which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (free registration in Aspose Cloud is required for this).
99

1010
# Licensing
11-
All Aspose.Tasks for Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
11+
All Aspose.Tasks Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
1212

1313
# Resources
1414
+ [**Website**](https://www.aspose.cloud)

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"description": "This repository contains Aspose Tasks SDK for PHP source code. Aspose Tasks Cloud SDK for PHP lets PHP developers manipulate or convert Microsoft Project documents hosted on a cloud platform quickly and easily.",
2+
"description": "This repository contains Aspose.Tasks Cloud SDK for PHP source code. Aspose.Tasks Cloud SDK for PHP lets PHP developers manipulate or convert Microsoft Project documents hosted on a cloud platform quickly and easily.",
33
"name": "aspose-tasks-cloud/php-sdk",
44
"type": "library",
55
"keywords" : ["aspose", "php", "aspose cloud", "mpp", "microsoft project", "ms project", "primavera"],
66
"homepage": "https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-php",
77
"license": "MIT",
88
"authors": [
99
{
10-
"name": "VasiliySinitsyn",
10+
"name": "Ivan Andreychikov",
1111
"homepage": "https://github.com/aspose-tasks-cloud"
1212
}
1313
],

src/Aspose/Tasks/ApiException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="ApiException.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Configuration.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="Configuration.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -94,14 +94,14 @@ class Configuration
9494
*
9595
* @var string
9696
*/
97-
protected $host = 'https://localhost/v1.0';
97+
protected $host = 'https://api.aspose.cloud';
9898

9999
/*
100100
* The version
101101
*
102102
* @var string
103103
*/
104-
protected $version = 'v2.0';
104+
protected $version = 'v3.0';
105105

106106
/*
107107
* User agent of the HTTP request, set to "PHP-Swagger" by default
@@ -135,7 +135,7 @@ class Configuration
135135
* Version of Aspose.Tasks Cloud API
136136
*
137137
*/
138-
protected $clientVersion = '18.9';
138+
protected $clientVersion = '19.4';
139139

140140
/*
141141
* Constructor

src/Aspose/Tasks/HeaderSelector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="HeaderSelector.php">
5-
* Copyright (c) 2017 Aspose.Tasks for Cloud
5+
* Copyright (c) 2017 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Model/AsposeResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="AsposeResponse.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Model/AssignmentBaseline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="AssignmentBaseline.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Model/AssignmentItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="AssignmentItem.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Model/AssignmentItemResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="AssignmentItemResponse.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/Tasks/Model/AssignmentItems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* --------------------------------------------------------------------------------------------------------------------
44
* <copyright company="Aspose" file="AssignmentItems.php">
5-
* Copyright (c) 2018 Aspose.Tasks for Cloud
5+
* Copyright (c) 2018 Aspose.Tasks Cloud
66
* </copyright>
77
* <summary>
88
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)