Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/owenvoke/poap-php
An object oriented PHP wrapper for the POAP API
https://github.com/owenvoke/poap-php
api hacktoberfest php poap wrapper
Last synced: about 1 month ago
JSON representation
An object oriented PHP wrapper for the POAP API
- Host: GitHub
- URL: https://github.com/owenvoke/poap-php
- Owner: owenvoke
- License: mit
- Created: 2021-09-20T10:23:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T11:57:39.000Z (over 1 year ago)
- Last Synced: 2024-11-14T14:53:04.334Z (about 2 months ago)
- Topics: api, hacktoberfest, php, poap, wrapper
- Language: PHP
- Homepage:
- Size: 69.3 KB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# POAP PHP
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-github-actions]][link-github-actions]
[![Static Analysis][ico-static-analysis]][link-static-analysis]
[![Total Downloads][ico-downloads]][link-downloads]
[![Buy us a tree][ico-treeware-gifting]][link-treeware-gifting]An object-oriented PHP wrapper for the [POAP][link-poap] API
## Requirements
- PHP >= 7.4
- A [PSR-17 implementation](https://packagist.org/providers/psr/http-factory-implementation)
- A [PSR-18 implementation](https://packagist.org/providers/psr/http-client-implementation)## Install
Via Composer
```shell
composer require owenvoke/poap guzzlehttp/guzzle:^7.4 http-interop/http-factory-guzzle:^1.2
```We are decoupled from any HTTP messaging client with help by [HTTPlug](https://httplug.io).
## Usage
**Documentation**
See the [`docs` directory](docs/) for more detailed documentation.
**Basic usage**
```php
// Include the Composer autoloader
require_once __DIR__ . '/vendor/autoload.php';$client = new \OwenVoke\POAP\Client();
$repositories = $client->event()->showBySlug('pest-php-meetup-1-2021');
```**Authentication**
> Note: The POAP API only supports authentication via an API token.
```php
use OwenVoke\POAP\Client;
$client = new Client();
$client->authenticate($apiToken, null, Client::AUTH_ACCESS_TOKEN);
```## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Testing
```shell
composer test
```## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Owen Voke][link-author]
- [All Contributors][link-contributors]## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
## Treeware
You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees [here][link-treeware-gifting].
Read more about Treeware at [treeware.earth][link-treeware].
[ico-version]: https://img.shields.io/packagist/v/owenvoke/poap.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-github-actions]: https://img.shields.io/github/workflow/status/owenvoke/poap-php/Tests.svg?style=flat-square
[ico-static-analysis]: https://img.shields.io/github/workflow/status/owenvoke/poap-php/Static%20Analysis.svg?style=flat-square&label=Static%20Analysis
[ico-downloads]: https://img.shields.io/packagist/dt/owenvoke/poap.svg?style=flat-square
[ico-treeware-gifting]: https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen?style=flat-square[link-poap]: https://poap.xyz
[link-packagist]: https://packagist.org/packages/owenvoke/poap
[link-github-actions]: https://github.com/owenvoke/poap-php/actions
[link-static-analysis]: https://github.com/owenvoke/poap-php/actions/workflows/static.yml
[link-downloads]: https://packagist.org/packages/owenvoke/poap
[link-treeware]: https://treeware.earth
[link-treeware-gifting]: https://ecologi.com/owenvoke?gift-trees
[link-author]: https://github.com/owenvoke
[link-contributors]: ../../contributors