Skip to content

Releases: ploi/ploi-php-sdk

Adds auth user resource

09 Sep 06:02
02b7e96
Compare
Choose a tag to compare

You may now manage Basic Auth users with this SDK, thanks to @fodderstompf 💙

https://developers.ploi.io/auth-users/list-auth-users

Adds FastCGI cache resource

08 Sep 11:29
f401259
Compare
Choose a tag to compare

You may now manage FastCGI cache with this SDK, thanks to @fodderstompf 💙

Add Aliases to sites resource

11 Jun 08:53
f3c7adf
Compare
Choose a tag to compare

You may now manage aliases via the SDK, thanks to @fodderstompf. 🎉

Pagination helpers are now available

19 May 07:27
9d1c8f8
Compare
Choose a tag to compare

User @fodderstompf did an excellent job adding new pagination methods.

An example to paginate servers:

$ploi->servers()->perPage(20)->page(1);

An alternative method:

$ploi->servers()->page($pageNumber, $amountPerPage);

This is also applicable on the sub-resources like sites, databases, cronjobs, etcetera:

$ploi->servers(123)->databases()->perPage($amountPerPage)->page($pageNumber);

Merged few pull requests

12 May 12:28
67f7c8b
Compare
Choose a tag to compare
Merge pull request #28 from sergiy-petrov/update-tests

update travis tests config

1.4: Merge pull request #23 from fodderstompf/test-fixes

03 May 18:17
79d2dbf
Compare
Choose a tag to compare
Test case fixes & dependency updates

WIP

10 Apr 11:50
c53a00a
Compare
Choose a tag to compare
WIP
Merge pull request #15 from grantholle/master

Add functions for creating custom server and retrieving ssh keys

Added backups

26 Jan 09:04
7484286
Compare
Choose a tag to compare

From PR #10

Remove usage of Laravel code and fix namespaces/tests

06 Jan 12:39
453b5d9
Compare
Choose a tag to compare

First initial release

31 Dec 07:32
272bb95
Compare
Choose a tag to compare

Finally an initial release, could still have some bugs.