Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adam-paterson/api-client-foundation
Foundation for creating PSR-7 compliant API Clients
https://github.com/adam-paterson/api-client-foundation
abstraction api-client api-wrapper php-api psr-7
Last synced: 3 days ago
JSON representation
Foundation for creating PSR-7 compliant API Clients
- Host: GitHub
- URL: https://github.com/adam-paterson/api-client-foundation
- Owner: adam-paterson
- License: mit
- Created: 2017-04-07T15:33:31.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2017-04-07T16:36:41.000Z (almost 8 years ago)
- Last Synced: 2024-12-02T21:24:45.634Z (2 months ago)
- Topics: abstraction, api-client, api-wrapper, php-api, psr-7
- Language: PHP
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# API Client Foundation
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]## Install
Via Composer
``` bash
$ composer require adam-paterson/api-client-foundation
```## Basic Usage
``` php
$api = new AdamPaterson\ApiClient\Foundation\ApiClient::create();
$response = $api->get('/resource/path', ['param1' => 'param']);
```## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Testing
``` bash
$ composer test
```## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.
## Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Adam Paterson][link-author]
- [All Contributors][link-contributors]## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
[ico-version]: https://img.shields.io/packagist/v/adam-paterson/api-client-foundation.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-travis]: https://img.shields.io/travis/adam-paterson/api-client-foundation/master.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/adam-paterson/api-client-foundation.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/adam-paterson/api-client-foundation.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/adam-paterson/api-client-foundation.svg?style=flat-square[link-packagist]: https://packagist.org/packages/adam-paterson/api-client-foundation
[link-travis]: https://travis-ci.org/adam-paterson/api-client-foundation
[link-scrutinizer]: https://scrutinizer-ci.com/g/adam-paterson/api-client-foundation/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/adam-paterson/api-client-foundation
[link-downloads]: https://packagist.org/packages/adam-paterson/api-client-foundation
[link-author]: https://github.com/adam-paterson
[link-contributors]: ../../contributors