You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
802 B
Plaintext
26 lines
802 B
Plaintext
6 years ago
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
/**
|
||
|
* Akamai {OPEN} EdgeGrid Auth for PHP
|
||
|
*
|
||
|
* Akamai\Open\EdgeGrid\Client wraps GuzzleHttp\Client
|
||
|
* providing request authentication/signing for Akamai
|
||
|
* {OPEN} APIs.
|
||
|
*
|
||
|
* This client works _identically_ to GuzzleHttp\Client
|
||
|
*
|
||
|
* However, if you try to call an Akamai {OPEN} API you *must*
|
||
|
* first call {@see Akamai\Open\EdgeGrid\Client->setAuth()}.
|
||
|
*
|
||
|
* @author Davey Shafik <dshafik@akamai.com>
|
||
|
* @copyright Copyright 2015 Akamai Technologies, Inc. All rights reserved.
|
||
|
* @license Apache 2.0
|
||
|
* @link https://github.com/akamai-open/edgegrid-auth-php
|
||
|
* @link https://developer.akamai.com
|
||
|
* @link https://developer.akamai.com/introduction/Client_Auth.html
|
||
|
*/
|
||
|
|
||
|
require_once __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
$cli = new \Akamai\Open\EdgeGrid\Cli();
|
||
|
$cli->run();
|