Jeroen-G / Flickr by JeroenG

Modern PHP package to make Flickr API calls. Ships with Laravel implementation.
38,364
25
4
Package Data
Maintainer Username: JeroenG
Maintainer Contact: jeroengjeroeng@gmail.com (JeroenG)
Package Create Date: 2016-05-29
Package Last Update: 2021-05-11
Home Page:
Language: PHP
License: EUPL-1.1
Last Refreshed: 2024-04-15 15:01:01
Package Statistics
Total Downloads: 38,364
Monthly Downloads: 893
Daily Downloads: 45
Total Stars: 25
Total Watchers: 4
Total Forks: 10
Total Open Issues: 2

PHP Flickr API

Latest Version on Packagist Quality Score StyleCI

Modern PHP package to make Flickr API calls. Ships with Laravel implementation.

Install

Via Composer

$ composer require jeroen-g/flickr

Usage

General

// $key is your Flickr API key. $format is optional, it sets the Flickr response format.
$flickr = new JeroenG\Flickr\Flickr(new JeroenG\Flickr\Api($key, $format));

// https://www.flickr.com/services/api/flickr.test.echo.html
$echoTest = $flickr->echoThis('helloworld');

// https://www.flickr.com/services/api/flickr.photosets.getList.html
$photosets = $flickr->listSets($arrayOfParameters);

// Setting up other API requests. See https://www.flickr.com/services/api
$result = $flickr->request('flickr.method', $arrayOfParameters);

Laravel

Add the Service Provider and (optionally) the facade to config/app.php: JeroenG\Flickr\FlickrServiceProvider::class, 'Flickr' => JeroenG\Flickr\FlickrLaravelFacade::class, This is done automatically in Laravel 5.5 with package discovery. In your .env file, set a FLICKR_KEY and FLICKR_SECRET with your Flickr API key and secret. More information on this is found here.

The functions act mostly the same as above, for example:

$echoTest = Flickr::echoThis('helloworld');

Change log

Please see the changelog for more information what has changed recently.

Contributing

Please see contributing for details.

Credits

License

The EUPL License. Please see the License File for more information.