PHPackages                             staempfli/eyebase - 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. staempfli/eyebase

AbandonedLibrary[API Development](/categories/api)

staempfli/eyebase
=================

Eyebase API Connect

1.3.3(8y ago)02.4kGPL-3.0PHPPHP ^7.0CI failing

Since Aug 8Pushed 5y ago8 watchersCompare

[ Source](https://github.com/staempfli/eyebase)[ Packagist](https://packagist.org/packages/staempfli/eyebase)[ RSS](/packages/staempfli-eyebase/feed)WikiDiscussions develop Synced 3d ago

READMEChangelogDependencies (3)Versions (12)Used By (0)

Eyebase
=======

[](#eyebase)

[![Project Status: Abandoned – Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the author(s) do not intend on continuing development.](https://camo.githubusercontent.com/14a8e7234bd98508cfd9903b34d873f772f8bad5efc410eddd157e9561fa51e6/687474703a2f2f7777772e7265706f7374617475732e6f72672f6261646765732f6c61746573742f6162616e646f6e65642e737667)](http://www.repostatus.org/#abandoned)[![Codacy Badge](https://camo.githubusercontent.com/c4c010d53f8787573b3466938fe3f150e6818ca5fb0b9aa8cf7872dbffd1abbc/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f6532613363663435656466633462313861656266616165666136313036393965)](https://www.codacy.com/app/Staempfli/eyebase?utm_source=github.com&utm_medium=referral&utm_content=staempfli/eyebase&utm_campaign=Badge_Grade)[![Build Status](https://camo.githubusercontent.com/a5cc668e4916a43d77e41ccc97c141a8af34cbb21b05a985f957fdf4831cfc7f/68747470733a2f2f7472617669732d63692e6f72672f737461656d70666c692f657965626173652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/staempfli/eyebase)[![Maintainability](https://camo.githubusercontent.com/ef7ec6262d555e07b9c18565e6d00f977665ee3e31d79ad525fe08c4026d2476/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f35613831633265306435376562366631323761642f6d61696e7461696e6162696c697479)](https://codeclimate.com/github/staempfli/eyebase/maintainability)[![Test Coverage](https://camo.githubusercontent.com/3d1650ebc00788aefc734cbb7e66f006ee2ed876c58f084b7fe65122ee4e8415/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f35613831633265306435376562366631323761642f746573745f636f766572616765)](https://codeclimate.com/github/staempfli/eyebase/test_coverage)

Library to fetch information from [Eyebase](https://www.eyebase.com/) Api's

```
$api = new \Staempfli\Eyebase\Api('http://mediasuite2.eyebase.com', 'd4ddf72a62dddf478deabc5a19b244b7');

$version = $api->getApiVersion();
/**
 * Returns a SimpleXMLElement
 *
 *  SimpleXMLElement Object
 *  (
 *      [version] => SimpleXMLElement Object
 *          (
 *              [id] => 1.4.1
 *              [name] => eyebase API v1.4.1
 *          )
 *  )
 */

$version = $api->setOutputFormat('json')->getApiVersion();
/**
 * Returns a JSON string
 *
 * {"version":{"id":"1.4.1","name":"eyebase API v1.4.1"}}
 */

$version = $api->setOutputFormat('array')->getApiVersion();
/**
 * Returns an Array
 *
 *  Array
 *  (
 *      [version] => Array
 *          (
 *              [id] => 1.4.1
 *              [name] => eyebase API v1.4.1
 *          )
 *  )
 */

// Example
$mediaAssetDetail = $api->setOutputFormat('array')->getMediaAssetDetails(20133);
/**
 *
 * Array
 *  (
 *     [mediaasset] => Array
 *         (
 *             [item_id] => 20133
 *             [mediaassettype] => 501
 *             [titel] => Dummy DE
 *             [titel_en] => Dummy EN
 *             [original_filename] => dummy.jpg
 *             [beschreibung] => Array
 *                 (
 *                 )
 *
 *             [ordnerstruktur] => Dummy
 *             [copyright] => Array
 *                 (
 *                 )
 *
 *             [field_251] => Standardusergroup, Demo User, Partners
 *             [field_257] => 04. August 2017
 *
 *             [eigentuemer] => Stämpfli AG
 *             [erstellt] => Array
 *                 (
 *                )
 *
 *             [erfasst] => 03.08.2017
 *             [geaendert] => 04.08.2017
 *             [quality_512] => Array
 *                 (
 *                     [resolution_x] => 300
 *                     [resolution_y] => 300
 *                     [resolution_z] => Array
 *                         (
 *                         )
 *
 *                     [size_mb] => 0.01
 *                     [checksum] => 6a6cf9fc1beb493d70eeb195ecad3552e74bd3f3193a8f190dcdbc9e7e8a95be37c9528e
 *                     [filename_ext] => .jpg
 *                     [filename_name_base] => 00020133_w
 *                     [filename] => 00020133_w.jpg
 *                     [url] => http://mediasuite2.eyebase.com/eyebase.data/bilder/512/137/00020133_w.jpg
 *                 )
 *
 *             [quality_1024] => Array
 *                 (
 *                     [resolution_x] => 300
 *                     [resolution_y] => 300
 *                     [resolution_z] => Array
 *                         (
 *                         )
 *
 *                     [size_mb] => 0.11
 *                     [checksum] => 6a6cf9fc1beb493d70eeb195ecad3552e74bd3f3193a8f190dcdbc9e7e8a95be37c9528e
 *                     [filename_ext] => .png
 *                     [filename_name_base] => 00020133_m
 *                     [filename] => 00020133_m.png
 *                     [url] => http://mediasuite2.eyebase.com/eyebase.data/bilder/1024/137/00020133_m.png
 *                 )
 *         )
 *  )
 */
```

Requirements
------------

[](#requirements)

- PHP &gt;= 7.0.\*
- guzzlehttp/guzzle &gt;= 6.3.\*

Support
-------

[](#support)

If you have any issues with this extension, open an issue on [GitHub](https://github.com/staempfli/eyebase/issues).

Contribution
------------

[](#contribution)

Any contribution is highly appreciated. The best way to contribute code is to open a [pull request on GitHub](https://help.github.com/articles/using-pull-requests).

Developer
---------

[](#developer)

[Marcel Hauri](https://github.com/mhauri), and all other [contributors](https://github.com/staempfli/eyebase/contributors)

License
-------

[](#license)

[Open Software License ("OSL") v. 3.0](https://opensource.org/licenses/OSL-3.0)

Copyright
---------

[](#copyright)

(c) 2017, Stämpfli AG

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 88.9% 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 ~13 days

Recently: every ~8 days

Total

9

Last Release

3094d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/402069?v=4)[Marcel Hauri](/maintainers/mhauri)[@mhauri](https://github.com/mhauri)

![](https://www.gravatar.com/avatar/71706506f6589b5436c45edfcf1ae57d8ced0d5571c06fdd48cf97d41b0bbcb8?d=identicon)[staempfli-webteam](/maintainers/staempfli-webteam)

![](https://www.gravatar.com/avatar/0039026286692f2f4f9df99a2625870ca1b157114920093ce0ff89fb5756e064?d=identicon)[audef1](/maintainers/audef1)

---

Top Contributors

[![jalogut](https://avatars.githubusercontent.com/u/6410900?v=4)](https://github.com/jalogut "jalogut (8 commits)")[![audef1](https://avatars.githubusercontent.com/u/4160004?v=4)](https://github.com/audef1 "audef1 (1 commits)")

---

Tags

api-clienteyebaselibraryapieyebase

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/staempfli-eyebase/health.svg)

```
[![Health](https://phpackages.com/badges/staempfli-eyebase/health.svg)](https://phpackages.com/packages/staempfli-eyebase)
```

###  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)[mailchimp/transactional

458.9M16](/packages/mailchimp-transactional)[get-stream/stream-chat

A PHP client for Stream Chat (https://getstream.io/chat/)

301.8M2](/packages/get-stream-stream-chat)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)

PHPackages © 2026

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