Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightwolf93/php-brisk
php-brisk is a php library for interact with the Brisk API
https://github.com/nightwolf93/php-brisk
api brisk circleci composer php phpunit url-shortener wrapper-api
Last synced: 3 days ago
JSON representation
php-brisk is a php library for interact with the Brisk API
- Host: GitHub
- URL: https://github.com/nightwolf93/php-brisk
- Owner: nightwolf93
- Created: 2020-08-09T14:34:56.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-09T18:23:02.000Z (about 4 years ago)
- Last Synced: 2024-10-17T13:51:58.278Z (19 days ago)
- Topics: api, brisk, circleci, composer, php, phpunit, url-shortener, wrapper-api
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![logo](https://github.com/nightwolf93/brisk/blob/master/logo.png?raw=true)
# php-brisk
[![CircleCI](https://circleci.com/gh/nightwolf93/php-brisk.svg?style=svg)](https://github.com/nightwolf93/php-brisk)
**php-brisk** is a php library for interact with the Brisk API
## Documentation
First create a instance of BriskClient
```php
$client = new BriskClient( 'http://localhost:3000', 'master', 'changeme' );
```Create a link
```php
$link = $client->createLink( 'https://github.com/nightwolf93/brisk', 30000, 5 );
```You can check the official brisk api too : https://nico-style931.gitbook.io/brisk/
## Composer
```
composer require nightwolf93/php-brisk
```## Test
```
make test
```## Authors
Nightwolf93