spotawheel / laravel-rebrandly
Laravel Rebrandly Package
Installs: 20 531
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: ^7.3|^8.0
- guzzlehttp/guzzle: ^7.0
This package is auto-updated.
Last update: 2025-03-22 16:31:32 UTC
README
A laravel package for Rebrandly.
For more information see Rebrandly
Installation
Step 1: Install spotawheel/laravel-rebrandly with composer:
composer require spotawheel/laravel-rebrandly
Step 2: Configure Rebrandly credentials
php artisan vendor:publish --provider="Spotawheel\Rebrandly\RebrandlyServiceProvider"
Add this in you .env file
REBRANDLY_API_KEY=apikey
REBRANDLY_API_URL=https://api.rebrandly.com/v1
Usage
use Rebrandly;
/* Return number of total links */ $string = Rebrandly::countLinks(); /* Create a new short url */ $string = Rebrandly::createLink('https://www.example.com'); /* Search link by slashtag */ $object = Rebrandly::searchLink('2j8ab31'); /* Delete link by slashtag */ $bool = Rebrandly::deleteLink('2j8ab31'); /* Return account details */ $object = Rebrandly::accountDetails(); /* Delete links */ $array = Rebrandly::accountDetails($linksArray); /* Retrieve links based on filters */ $array = Rebrandly::getLinks( string $dateTo = '', string $dateFrom = '', string $lastLinkId = '', int $limit = 25, string $domainId = '', string $domainFullName = '', string $slashtag = '', string $creatorId = '', string $orderBy = 'createdAt', string $orderDir = 'desc' );
Notes
For more information see Rebrandly's API docs