Skip to content
This repository was archived by the owner on Jul 5, 2021. It is now read-only.

Commit a443f8a

Browse files
author
Ramon Smit
committed
Added changelog, updated readme, replaced Session example to the example directory
1 parent 2100e50 commit a443f8a

File tree

3 files changed

+78
-68
lines changed

3 files changed

+78
-68
lines changed

CHANGELOG.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
### 1.1 _(19/11/2018)_
2+
3+
* Added create session for single sign on
4+
5+
### 0.5.6 _(01/09/2016)_
6+
7+
* Error handling bug fix
8+
* Exposed service plan guid property (thanks [ghermans](https://github.com/ghermans))
9+
10+
### 0.5.4 _(13/06/2016)_
11+
12+
* Added GetSubscription functionality (thanks [ghermans](https://github.com/ghermans))
13+
14+
### 0.5.4 _(13/06/2016)_
15+
16+
* Added GetSubscription functionality (thanks [ghermans](https://github.com/ghermans))
17+
18+
### 0.5.3 _(24/05/2016)_
19+
20+
* Code quality improvements
21+
* Updated ListSubscriptions to retrieve subscription
22+
23+
### 0.5.2 _(18/05/2016)_
24+
25+
* Updated ListSubscriptions to retrieve plan guids
26+
* Updated GetServicePlan to accept 'guid' as a filter option
27+
* Updated DeleteSiteAlias to accept 'alias' as a filter option
28+
29+
### 0.5.1 _(05/04/2016)_
30+
31+
* Added mail preferences functionality
32+
* Added wordpress functionality
33+
* Added APS functionality
34+
* Added ssl certificate functionality
35+
36+
### 0.5.0 _(08/03/2016)_
37+
38+
* Added secret key functionality
39+
* Updated error handling to expose Plesk error code
40+
* Added html entity escaping
41+
42+
### 0.4.0 _(05/02/2015)_
43+
44+
* Added functionality for databases
45+
* Updated test script
46+
47+
### 0.3.0 _(16/10/2014)_
48+
49+
* Added functionality for ip addresses, service plans, clients, subscriptions and server information
50+
* Added test script
51+
* Updated classes to throw exceptions when requests fail
52+
* Sorted examples folder into areas of functionality
53+
54+
### 0.2.0 _(09/10/2014)_
55+
56+
* Added support for composer installs
57+
* Updated code for psr-0 autoloading
58+
* Updated code for psr-1 basic coding standard
59+
* Updated code for psr-2 coding style guide
60+
61+
### 0.1.0 _(08/10/2014)_
62+
63+
* Updated Create Email Address xml payload for newer versions of the Plesk API
64+
* Exposed further functionality
65+
66+
### Unversioned _(13 Apr 2013)_
67+
68+
* First public release of php-plesk.

README.md

Lines changed: 10 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
php-plesk
22
============
33

4+
Origin
5+
------
6+
Original fork of: [pmill/php-plesk](https://github.com/pmill/php-plesk)
7+
48
Introduction
59
------------
610

@@ -20,13 +24,14 @@ The following features are currently supported:
2024
* List database servers
2125
* List/add/delete databases
2226
* Add database users
27+
* Create single sign-on session
2328
* Further functionality can be seen in the examples folder
24-
* Email dev.DALTCORE@gmail.com with requests for exposing further functionality
29+
* Open a ticket with requests for exposing further functionality
2530

2631
Requirements
2732
------------
2833

29-
This library package requires PHP 5.4 or later and Plesk 12.0 or above.
34+
This library package requires PHP 5.4 or later and Plesk 12.0 till 17.5
3035

3136

3237
Usage
@@ -49,78 +54,15 @@ Further examples are available in the examples directory.
4954
Version History
5055
---------------
5156

52-
Unversioned (13 Apr 2013)
53-
54-
* First public release of php-plesk.
55-
56-
0.1.0 (08/10/2014)
57-
58-
* Updated Create Email Address xml payload for newer versions of the Plesk API
59-
* Exposed further functionality
60-
61-
0.2.0 (09/10/2014)
62-
63-
* Added support for composer installs
64-
* Updated code for psr-0 autoloading
65-
* Updated code for psr-1 basic coding standard
66-
* Updated code for psr-2 coding style guide
67-
68-
0.3.0 (16/10/2014)
69-
70-
* Added functionality for ip addresses, service plans, clients, subscriptions and server information
71-
* Added test script
72-
* Updated classes to throw exceptions when requests fail
73-
* Sorted examples folder into areas of functionality
74-
75-
0.4.0 (05/02/2015)
76-
77-
* Added functionality for databases
78-
* Updated test script
79-
80-
0.5.0 (08/03/2016)
81-
82-
* Added secret key functionality
83-
* Updated error handling to expose Plesk error code
84-
* Added html entity escaping
85-
86-
0.5.1 (05/04/2016)
87-
88-
* Added mail preferences functionality
89-
* Added wordpress functionality
90-
* Added APS functionality
91-
* Added ssl certificate functionality
92-
93-
0.5.2 (18/05/2016)
94-
95-
* Updated ListSubscriptions to retrieve plan guids
96-
* Updated GetServicePlan to accept 'guid' as a filter option
97-
* Updated DeleteSiteAlias to accept 'alias' as a filter option
98-
99-
0.5.3 (24/05/2016)
100-
101-
* Code quality improvements
102-
* Updated ListSubscriptions to retrieve subscription status
103-
104-
0.5.4 (13/06/2016)
105-
106-
* Added GetSubscription functionality (thanks [ghermans](https://github.com/ghermans))
107-
108-
0.5.5 (15/08/2016)
109-
110-
* Added GetTraffic functionality (thanks [texh](https://github.com/texh))
111-
* Added ListDNS functionality (thanks [carlswart](https://github.com/carlswart))
112-
113-
0.5.6 (01/09/2016)
114-
115-
* Error handling bug fix
116-
* Exposed service plan guid property (thanks [ghermans](https://github.com/ghermans))
57+
See the [CHANGELOG.md](CHANGELOG.md) file.
11758

11859

11960
Copyright and License
12061
---------------------
12162

12263
php-plesk
123-
Copyright (c) 2013 DALTCORE (dev.DALTCORE@gmail.com)
64+
Copyright (c) 2013 pmill (dev.pmill@gmail.com)
65+
Copyright (c) 2018 DALTCORE
12466
All rights reserved.
12567

12668
Redistribution and use in source and binary forms, with or without
File renamed without changes.

0 commit comments

Comments
 (0)