rezzza/shorty

Underwear for your long urls

v1.3.1 2015-12-18 08:53 UTC

This package is not auto-updated.

Last update: 2024-03-16 12:12:20 UTC


README

https://poser.pugx.org/rezzza/Shorty/version.png https://travis-ci.org/rezzza/Shorty.png?branch=master https://insight.sensiolabs.com/projects/92606d9e-f7ee-48a9-adf0-d7d7cd4d8918/mini.png

Underwear for your long urls

Installation

Use Composer to install: rezzza/shorty.

In your composer.json you should have:

{
    "require": {
        "rezzza/shorty": "1.0.*"
    }
}

Requirements

Shorty requires Guzzle.

Usage

Example with the Google shortener:

$googleShortener = new \Rezzza\Shorty\Provider\Google();
$googleShortener->setHttpAdapter(new \Rezzza\Shorty\Http\GuzzleAdapter());
// or
// $googleShortener->setHttpAdapter(new \Rezzza\Shorty\Http\CurlAdapter());
$shortUrl        = $googleShortener->shorten('http://www.verylastroom.com/');
$longUrl         = $googleShortener->expand('http://goo.gl/YY5Tz');

Example with the Chain shortener:

$chainShortener = new \Rezzza\Shorty\Provider\Chain();
$chainShortener->addProvider($googleShortener); // see example above
$chainShortener->addProvider($bitlyShortener);

$shortUrl       = $chainShortener->shorten('http://www.verylastroom.com/');
$longUrl        = $chainShortener->expand('http://goo.gl/YY5Tz');

Unit Tests

You can run tests with:

bin/atoum -d tests/units

Release notes

1.1.0

  • Added Chain provider.

1.0.0

  • Added Google Url Shortener.
  • Added Bitly Url Shortener.
  • Added Curl Http adapter.