Package Data | |
---|---|
Maintainer Username: | sildraug |
Maintainer Contact: | info@waavi.com (Waavi) |
Package Create Date: | 2016-01-01 |
Package Last Update: | 2022-01-10 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-09 15:03:14 |
Package Statistics | |
---|---|
Total Downloads: | 162,861 |
Monthly Downloads: | 1,010 |
Daily Downloads: | 10 |
Total Stars: | 62 |
Total Watchers: | 4 |
Total Forks: | 33 |
Total Open Issues: | 9 |
URL shortener package that gives a convenient Laravel Facade for mremi/UrlShortener
WAAVI is a web development studio based in Madrid, Spain. You can learn more about us at waavi.com
Laravel | translation :---------|:---------- 5.1.x | 1.0.x 5.2.x | 1.0.1 and higher 5.5.x | 1.0.7 and higher
Require through composer
composer require waavi/url-shortener 1.0.x
Or manually edit your composer.json file:
"require": {
"waavi/url-shortener": "1.0.x"
}
In config/app.php, add the following entry to the end of the providers array:
Waavi\UrlShortener\UrlShortenerServiceProvider::class,
And the following alias:
'UrlShortener' => Waavi\UrlShortener\Facades\UrlShortener::class,
Publish the configuration file, the form view and the language entries:
php artisan vendor:publish --provider="Waavi\UrlShortener\UrlShortenerServiceProvider"
Check the config files for the environment variables you need to set for the selected driver.
```php
\UrlShortener::shorten('http://google.com'); // Uses default driver as per config settings
\UrlShortener::driver('bitly')->shorten('http://google.com');
```
```php
\UrlShortener::expand('http://google.com'); // Uses default driver as per config settings
\UrlShortener::driver('bitly')->expand('http://google.com');
```