zenapply/php-bitly

This package is abandoned and no longer maintained. The author suggests using the leadthread/php-bitly package instead.

Easily shorten URLs in PHP

4.0.0 2017-04-20 00:20 UTC

This package is auto-updated.

Last update: 2021-12-17 07:50:30 UTC


README

Latest Version Software License Build Status Scrutinizer Code Quality Code Coverage Dependency Status Total Downloads

Version 3 now uses OAuth2 as required by Bitly. Get your developer access token here

Installation

Install via composer - In the terminal:

composer require leadthread/php-bitly

Usage

use LeadThread\Bitly\Bitly;
$c = new Bitly("access token");
$result = $c->shorten("https://www.google.com/");
var_dump($result);
// string(21) "http://bit.ly/1SvUIo8"