fiasco / cloud-api-sdk-php
PHP SDK For Acquia Cloud API
Installs: 4 132
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 1
Requires
- php: >=7.3
- cebe/php-openapi: ^1.0
- guzzlehttp/guzzle: ^7.4
- league/oauth2-client: ^2.4
- symfony/cache: ^5|^6
- webmozart/path-util: ^2.3
Requires (Dev)
- phpunit/phpunit: ^8.0
- symfony/yaml: ^4.0
This package is auto-updated.
Last update: 2024-11-06 19:59:41 UTC
README
This is an unofficial PHP SDK for the Acquia Cloud API. It is built from the Open API spec found at https://cloudapi-docs.acquia.com/acquia-spec.yaml.
Installation
Use composer to install the library
composer require fiasco/cloud-api-sdk-php
Usage
Create a client to connect to the API. You'll need an API key and secret. Follow the documentation found here: https://docs.acquia.com/acquia-cloud/develop/api/auth/
use AcquiaCloudApi\AcquiaCloudApi; $api = new AcquiaCloudApi($key, $secret);