PHPackages                             jeroen-g/flickr - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jeroen-g/flickr

ActiveLibrary[API Development](/categories/api)

jeroen-g/flickr
===============

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

V2.2.0(5y ago)2559.9k↓28%9[2 issues](https://github.com/Jeroen-G/Flickr/issues)2EUPL-1.1PHPPHP ^7.4 || ^8.0

Since May 29Pushed 5y ago3 watchersCompare

[ Source](https://github.com/Jeroen-G/Flickr)[ Packagist](https://packagist.org/packages/jeroen-g/flickr)[ Docs](https://github.com/Jeroen-G/Flickr)[ RSS](/packages/jeroen-g-flickr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (3)Versions (11)Used By (2)

PHP Flickr API
==============

[](#php-flickr-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f233ba9077308ac14c18221e80b34ffa4df9ee23a37a473ac2168c04ffc7ea02/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a65726f656e2d672f666c69636b722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeroen-g/flickr)[![StyleCI](https://camo.githubusercontent.com/afee9e63547a57c7c05a61c70761bd348ba675e76050607f80ba8cabc980e1b1/68747470733a2f2f7374796c6563692e696f2f7265706f732f35393935353533352f736869656c64)](https://styleci.io/repos/59955535)

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

Install
-------

[](#install)

Via Composer

```
$ composer require jeroen-g/flickr
```

Usage
-----

[](#usage)

### General

[](#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

[](#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` with your Flickr API key and add the following entry to the `config/services.php` file:

```
'flickr' => [
    'key' => env('FLICKR_KEY'),
],

```

More information on this is found [here](https://www.flickr.com/services/api/keys/).

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

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

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [contributing](contributing.md) for details.

Credits
-------

[](#credits)

- [JeroenG](https://github.com/Jeroen-G)
- [All Contributors](../../contributors)

License
-------

[](#license)

The EUPL License. Please see the [License File](license.md) for more information.

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity41

Moderate usage in the ecosystem

Community22

Small or concentrated contributor base

Maturity74

Established project with proven stability

 Bus Factor1

Top contributor holds 67.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~258 days

Recently: every ~92 days

Total

8

Last Release

1833d ago

Major Versions

V1.3 → V2.02020-10-09

PHP version history (3 changes)v1.0PHP ~5.5|~7.0

V2.0PHP ^7.4

V2.2.0PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d8700d69abe733de151f8cf49084e99ded7b9d34d7b0d1cd8f3825f5d925ff3?d=identicon)[JeroenG](/maintainers/JeroenG)

---

Top Contributors

[![Jeroen-G](https://avatars.githubusercontent.com/u/1116853?v=4)](https://github.com/Jeroen-G "Jeroen-G (21 commits)")[![Synchro](https://avatars.githubusercontent.com/u/81561?v=4)](https://github.com/Synchro "Synchro (6 commits)")[![jaykay-design](https://avatars.githubusercontent.com/u/309927?v=4)](https://github.com/jaykay-design "jaykay-design (1 commits)")[![jorisnoo](https://avatars.githubusercontent.com/u/5810772?v=4)](https://github.com/jorisnoo "jorisnoo (1 commits)")[![Kaishiyoku](https://avatars.githubusercontent.com/u/5131112?v=4)](https://github.com/Kaishiyoku "Kaishiyoku (1 commits)")[![sunscreem](https://avatars.githubusercontent.com/u/7523595?v=4)](https://github.com/sunscreem "sunscreem (1 commits)")

---

Tags

hacktoberfestphpapilaravelflickrJeroenG

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jeroen-g-flickr/health.svg)

```
[![Health](https://phpackages.com/badges/jeroen-g-flickr/health.svg)](https://phpackages.com/packages/jeroen-g-flickr)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)[anahkiasen/flickering

A modern interface for the Flickr API

535.9k1](/packages/anahkiasen-flickering)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)[dariusiii/tmdb-laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.

1821.1k](/packages/dariusiii-tmdb-laravel)[shipu/php-aamarpay-payment

PHP client for Aamarpay Payment Gateway API

3214.6k](/packages/shipu-php-aamarpay-payment)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
