miguelbemartin / buffer-sdk-php
This library allows you to use the Buffer API using PHP
Installs: 3 560
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: >=7.2
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- symfony/http-client: ^4.3
Requires (Dev)
- phpunit/phpunit: ^8.3
- squizlabs/php_codesniffer: 3.*
- swaggest/json-diff: ^3.4
This package is auto-updated.
Last update: 2025-03-28 15:49:40 UTC
README
This library allows you to quickly and easily use the Buffer Web API v1 via PHP.
Getting Started
Prerequisites
- PHP >=7.2
Installation
Run into the terminal the next command
composer require miguelbemartin/buffer-sdk-php
Usage
// Create a new AuthorizationToken $auth = new AuthorizationToken('XXX'); // Create a new Buffer Wrapper Client $buffer = new Buffer($auth); // Get User $user = $buffer->userService->getUser(); // Get the profiles $profiles = $buffer->profileService->getProfiles();
Run the tests
./vendor/bin/phpunit
Contributing
- Open a PR: https://github.com/miguelbemartin/buffer-sdk-php/pulls
- Open an issue: https://github.com/miguelbemartin/buffer-sdk-php/issues
Authors
- Miguel Ángel Martín - @miguelbemartin
License
This project is licensed under the MIT License - see the LICENSE.md file for details