axl-media/short-pw-php-sdk

URL Shortener API wrapper for PHP.

1.0.2 2019-05-23 11:55 UTC

This package is auto-updated.

Last update: 2024-04-23 22:29:32 UTC


README

$ composer require axl-media/short-pw-php-sdk

Usage

use AXLMedia\ShortPw\ShortPw;

$api = new ShortPw('[your_api_key]');

// Returns an array
$api->shortenUrl('https://test.com');

// Returns just the short URL as string
$api->shorten('https://test.com');