realpage/waves

:package_description

v1.0.0-rc3 2016-08-02 03:39 UTC

This package is not auto-updated.

Last update: 2020-09-04 20:50:11 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

PHP client to make your life easier when talking to Docker Hub. A lot of this is based on RyanTheAllmighty's work on his node Docker-Hub-API lib.

Install

Via Composer

$ composer require realpage/waves

Usage

$adapter = new DockerHubAdapter();
$client = new Client($adapter);

$client->login('username', 'password');
// '9723ad9b77d187dc8c87f3d63d87c443'
$client->createRepository('realpage', 'waves', 'example description');
/*
 * {
 *     "user": "realpage",
 *     "name": "waves",
 *     "namespace": "realpage",
 *     "status": 0,
 *     "description": "example repository",
 *     "is_private": false,
 *     "is_automated": false,
 *     "can_edit": true,
 *     "star_count": 0,
 *     "pull_count": 0,
 *     "last_updated": null,
 *     "full_description": "example repository"
 * }
 */

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email john.laswell@realpage.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.