maxcdn / php-maxcdn
PHP Wrapper for MaxCDN Remote Web Services
Installs: 666 779
Dependents: 1
Suggesters: 0
Security: 0
Stars: 19
Watchers: 9
Forks: 21
Open Issues: 13
Requires
- php: >=5.3.0
- ext-curl: *
This package is not auto-updated.
Last update: 2024-11-05 03:39:24 UTC
README
Requirements
- PHP 5.3 or above
- PHP Curl Extension
Installation with Composer
Composer is the recommended way to utilize the MaxCDN RWS SDK PHP library. For more information on how to use Composer, see http://www.getcomposer.org .
- Add "maxcdn/php-maxcdn" as a dependency in your composer.json project file.
{ "require": { "maxcdn/php-maxcdn": "2.*" } }
- Download and install Composer (if not already installed).
curl -sS https://getcomposer.org/installer | php
- Install your package dependencies.
php composer.phar install -o
This will download the MaxCDN library and configure composer to use it. Composer will also build an autoloader for your use in the next step.
- Use Composer's autoloader.
Composer prepares an autoload file which autoloads the RWS library for you on demand. To use it, provide the following at the top of your PHP source files:
require_once '/path/to/vendor/autoload.php';
It is advised that you understand how to optimze Composer's usage in Production environments. For more information about Composer, visit http://getcomposer.org
The libraries are located in the src/ directory. The classes are organized in a PSR-0 hierarchy. You can use any PSR-0 compliant autoloader for this library. Composer is the recommended method (see above).
Usage
<?php $api = new MaxCDN("my_alias","consumer_key","consumer_secret"); // get account information echo $api->get('/account.json'); // delete a file from the cache $params = array('file' => '/robots.txt'); echo $api->delete('/zones/pull.json/6055/cache', $params); ?>
Methods
It has support for GET
, POST
, PUT
and DELETE
OAuth signed requests.