2017 © Pedro Peláez
 

library now-php-client

A PHP 5.4+ wrapper for the Now Instant API Edit

image

joecohens/now-php-client

A PHP 5.4+ wrapper for the Now Instant API Edit

  • Saturday, October 21, 2017
  • by joecohens
  • Repository
  • 2 Watchers
  • 3 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

now php client

Build Status StyleCI, (*1)

A non official PHP +5.4 client for the Now Instant Api, (*2)

Usage

Install the package:, (*3)

composer require joecohens/now-php-client

Require composer autoload:, (*4)

require __DIR__.'/../vendor/autoload.php';

Create an instance of the Now Client:, (*5)

$now = new Jeocohens\Now\Now(API_TOKEN, TEAM_ID);

Use any of the resource enpoints:, (*6)

$now->deployments()
````

## Reference

#### Deployments

```php
$now->deployments();
$now->deployment($id);
$now->createDeployment($body);
$now->deleteDeployment($id);

Files

$now->files($id);
$now->file($id, $fileId);

Domains

$now->domains();
$now->addDomain($name, $isExternalDNS = false);
$now->deleteDomain($name);
$now->domainRecords($domain);
$now->addDomainRecord($domain, array $recordData = []);
$now->deleteDomainRecord($domain, $recordId);

Certificates

$now->certificates($cn);
$now->createCertificate($cn);
$now->renewCertificate($cn);
$now->replaceCertificate($cn, $cert, $key, $ca);
$now->deleteCertificate($cn);

Aliases

$now->aliases($id = null);
$now->createAlias($id, $alias);
$now->deleteAlias($id);

Secrets

$now->secrets();
$now->createSecret($name, $value);
$now->renameSecret($id, $name);
$now->deleteSecret($id);

The Versions

21/10 2017

dev-master

9999999-dev

A PHP 5.4+ wrapper for the Now Instant API Edit

  Sources   Download

MIT

The Requires

 

The Development Requires