Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cable8mm/bigkinds-php-client
Unofficial Simple Bigkinds Php Client
https://github.com/cable8mm/bigkinds-php-client
apache2-license bigkinds bigkinds-php-client php phpunit psr-18 psr-4 psr-7 rest-api
Last synced: about 1 month ago
JSON representation
Unofficial Simple Bigkinds Php Client
- Host: GitHub
- URL: https://github.com/cable8mm/bigkinds-php-client
- Owner: cable8mm
- License: mit
- Created: 2019-08-02T08:46:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-09T13:43:16.000Z (11 months ago)
- Last Synced: 2024-12-17T15:25:27.837Z (about 2 months ago)
- Topics: apache2-license, bigkinds, bigkinds-php-client, php, phpunit, psr-18, psr-4, psr-7, rest-api
- Language: PHP
- Homepage: https://www.palgle.com/bigkinds-php-client/
- Size: 202 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Bigkinds Php Client
[![code-style](https://github.com/cable8mm/bigkinds-php-client/actions/workflows/code-style.yml/badge.svg)](https://github.com/cable8mm/bigkinds-php-client/actions/workflows/code-style.yml)
[![run-tests](https://github.com/cable8mm/bigkinds-php-client/actions/workflows/run-tests.yml/badge.svg)](https://github.com/cable8mm/bigkinds-php-client/actions/workflows/run-tests.yml)
![Packagist Version](https://img.shields.io/packagist/v/cable8mm/bigkinds-php-client)
![Packagist Downloads](https://img.shields.io/packagist/dt/cable8mm/bigkinds-php-client)
![Packagist Dependency Version](https://img.shields.io/packagist/dependency-v/cable8mm/bigkinds-php-client/php)
![Packagist Stars](https://img.shields.io/packagist/stars/cable8mm/bigkinds-php-client)
![Packagist License](https://img.shields.io/packagist/l/cable8mm/bigkinds-php-client)The Bigkinds PHP Client is a lightweight library for PHP. Using bigkinds-php-client makes code beautiful, elegant, and simple. It works with a Bigkinds Access Key, although this is optional.
We have provided the API Documentation on the web. For more information, please visit https://www.palgle.com/bigkinds-php-client/ ❤️
## Install
```sh
composer require cable8mm/bigkinds-php-client
```## Usage
```php
use Cable8mm\BigkindsPhpClient\Bigkinds;$Bigkinds = new Bigkinds();
$news = $Bigkinds->request('news');
```or
```php
use Cable8mm\BigkindsPhpClient\Big;$news = \Big::kinds('news') // facade class
```If you want to learn more about Bigkinds, visit https://www.bigkinds.or.kr/.
## Formatting
```bash
composer lint
# Modify all files to comply with the PSR-12.composer inspect
# Inspect all files to ensure compliance with PSR-12.
```## Test
```sh
composer test
```## More Informations
- The bigkinds-php-client follows the PSR standard.
- The bigkinds-php-client is based on my another toy project - https://github.com/cable8mm/phpunit-start-kit## License
The Bigkinds PHP Client is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).