php-brisk is a php library for interact with the Brisk API
First create a instance of BriskClient
$client = new BriskClient( 'http://localhost:3000', 'master', 'changeme' );
Create a link
$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 require nightwolf93/php-brisk
make test
Nightwolf93