sineverba/bitly-php-api-wrapper

PHP Wrapper for APIv4 Bit.ly

6.5.0 2024-01-11 11:35 UTC

This package is auto-updated.

Last update: 2025-03-20 14:09:47 UTC


README

The Bit.ly name is trademark of Bit.ly!

Simple PHP wrapper for the Bit.ly API V4.

Support PHP >= 5.6

If you like or use this project, star it!

CI / CD Status
Packagist Total Downloads
Semaphore CI Build Status
Scrutinizer Scrutinizer Code Quality
Scrutinizer Code Coverage
Scrutinizer Build Status
Codecov codecov
StyleCI StyleCI
Coveralls Coverage Status
CircleCI CircleCI
Sonarcloud Quality Gate Status

Install

$ composer require sineverba/bitly-php-api-wrapper

Usage

<?php

require_once ('vendor/autoload.php');

use Bitlywrap\Auth\Auth;
use Bitlywrap\Adapter\Adapter;
use Bitlywrap\Wrapper\Wrapper;

$token = 'your_generic_access_token';

$auth = new Auth($token);
$adapter = new Adapter($auth);
$wrapper = new Wrapper($adapter);

$long_url = 'http://www.example.com';

$short_url = $wrapper->getShortLink($long_url);

echo $short_url; // http://bit.ly/2HzJUKT

Contributions

Contributions are welcome and will be fully credited.