vongola12324 / laravel-imgur
Laravel wrapper for the Imgur API.
v1.0.4
2018-04-15 11:43 UTC
Requires
- guzzlehttp/guzzle: ^6.3
- illuminate/http: ^5.0
- illuminate/support: ^5.0
- j0k3r/php-imgur-api-client: ^3.0.0
Requires (Dev)
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2025-03-19 22:49:33 UTC
README
Laravel wrapper for the Imgur API.
Only work for Laravel 7.x (or above) and PHP 7.4 (or above).
If you are using older version of Laravel, you should use j0k3r/php-imgur-api-client.
Installation
composer require vongola12324/laravel-imgur
Config
You have to add IMGUR_CLIENT_ID and IMGUR_CLIENT_SECRET in your .env file, or client will not be able to work.
See Imgur Api Docs for details.
Usage
Basic Usage
// Create $imgurClient object use Vongola\Imgur\Client as ImgurClient; $imgurClient = new ImgurClient(); // The API calls can be accessed via the $imgurClient object $imgurClient->memegen()->defaultMemes();
Also, You can use Facade instead of new
class.
use Vongola\Imgur\Client as ImgurClient; // The API calls can be accessed via the $imgurClient object ImgurClient::memegen()->defaultMemes();
Api
At this time we support the following Apis:
- Account (
$imgurClient->account()
) - Album (
$imgurClient->album()
) - Comment (
$imgurClient->comment()
) - Gallery (
$imgurClient->gallery()
) - Image (
$imgurClient->image()
)
See Imgur Api Docs for all Api.
Notice
- This project is based on j0k3r/php-imgur-api-client.
- There are some feature available in j0k3r's version, which do not show in Imgur Api Docs, will not provide in this package.
- The test case of this project are still WIP.
- It is recommended not to use this project in a formal project (because it has not been officially released yet) unless you understand what you are doing!
License
MIT License