https://github.com/jongotlin/ratsit
Api wrapper for Ratsit/Checkbiz
https://github.com/jongotlin/ratsit
api api-client api-wrapper httplug
Last synced: 5 months ago
JSON representation
Api wrapper for Ratsit/Checkbiz
- Host: GitHub
- URL: https://github.com/jongotlin/ratsit
- Owner: jongotlin
- Created: 2017-12-09T12:30:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-27T05:43:01.000Z (over 4 years ago)
- Last Synced: 2025-09-05T07:32:48.386Z (5 months ago)
- Topics: api, api-client, api-wrapper, httplug
- Language: PHP
- Size: 20.5 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ratsit/Checkbiz API wrapper
[](https://travis-ci.org/jongotlin/Ratsit)
## Installation
```bash
$ composer require jongotlin/ratsit
```
## Usage
```php
$token = '****';
$ratsit = new \JGI\Ratsit\Ratsit($token);
$ratsit->setHttpClient($client); // $client is a \Http\Client\HttpClient
$persons = $ratsit->searchPerson('Per Fredrik', 'EKEBY');
$person = $ratsit->findPersonBySocialSecurityNumber('194107081111');
```
## Symfony Bundle
See [jongotlin/ratsit-bundle](https://github.com/jongotlin/RatsitBundle)