now php client
, (*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);