PHPackages                             meema/laravel-meema - 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. meema/laravel-meema

ActiveLibrary[API Development](/categories/api)

meema/laravel-meema
===================

🐏 A blazing-fast Laravel adapter for the official Meema API. An API each Laravel developer will feel welcome to.

0.1.3(5y ago)57MITPHPPHP ^7.2.5 || ^8.0

Since Feb 16Pushed 4y agoCompare

[ Source](https://github.com/meemalabs/laravel-meema)[ Packagist](https://packagist.org/packages/meema/laravel-meema)[ Docs](https://github.com/meemalabs/laravel-meema)[ RSS](/packages/meema-laravel-meema/feed)WikiDiscussions main Synced yesterday

READMEChangelog (4)Dependencies (7)Versions (10)Used By (0)

 [ ![Meema for Laravel](https://raw.githubusercontent.com/meema/meemasearch-client-common/master/banners/php.png) ](https://meema.io)

#### The most simple way to integrate [Meema](https://meema.io) and your Laravel project

[](#the-most-simple-way-to-integrate-meema-and-your-laravel-project)

 [![Scrutinizer](https://camo.githubusercontent.com/a7976c79087205ca24bec05658ee7d32aaade7b44c73875b06119a90c068034d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d65656d616c6162732f6d65656d612d636c69656e742d7068702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/meemalabs/meema-client-php/badges/quality-score.png?b=main) [![Total Downloads](https://camo.githubusercontent.com/4fdd39624cec363bd339c360e9ec290e8aad3afa0dae42952f07f37f106de52a/68747470733a2f2f706f7365722e707567782e6f72672f6d65656d612f6c61726176656c2d6d65656d612f642f746f74616c2e737667)](https://packagist.org/packages/meema/laravel-meema) [![Latest Version](https://camo.githubusercontent.com/a60308d720e659166d9438e58fa43b98c74cabb9786b8ae70f0b7d5645d2e91c/68747470733a2f2f706f7365722e707567782e6f72672f6d65656d612f6c61726176656c2d6d65656d612f762f737461626c652e737667)](https://packagist.org/packages/meema/laravel-meema) [![License](https://camo.githubusercontent.com/03ad7624f47716180aac9c42a98b6be85350842309c4bbd59e473bd19b5d8ada/68747470733a2f2f706f7365722e707567782e6f72672f6d65656d612f6c61726176656c2d6d65656d612f6c6963656e73652e737667)](https://packagist.org/packages/meema/laravel-meema)

 [Documentation](https://docs.meema.io) • [PHP Client](https://github.com/meemalabs/meema-client-php) • [Report a bug](https://github.com/meemalabs/laravel-meema/issues) • [FAQ](https://docs.meema.io) • [Discord](https://discord.meema.io)

🐙 Features
----------

[](#-features)

- Most simple way to implement a fully-functional media management system &amp; more
- Thin, minimal &amp; fast package to interact with Meema's API
- Supports PHP `^7.*`

💡 Usage
-------

[](#-usage)

First, install Meema Laravel Client via the [composer](https://getcomposer.org/) package manager:

```
composer require meema/laravel-meema
```

Next, you may want to publish the config file with:

```
php artisan vendor:publish --provider="Meema\LaravelMeema\Providers\MeemaServiceProvider" --tag="config"
```

Now, you can easily interact with your "media items" using the `Media` facade:

```
use Meema\LaravelMeema\Facades\Media;

Media::create('New media name');
Media::get();

// specific uuids
Media::get('11a283ed-a64e-424a-aefc-6aa98971d529', '1556fcb8-693e-4431-8b16-3b2b7bb8fcc7');
Media::search('media-name');

// this will return a Response instance
$media = Media::find('11a283ed-a64e-424a-aefc-6aa98971d529');

// you may chain other methods that require an id
$media->update('updated-media-name')
$media->delete();
$media->archive();
$media->unarchive();
$media->makePrivate();
$media->makePublic();
$media->duplicate();

// Relationships with other models.
// Continuing with the chaining methods we used earlier.
$media->folders()->get();
$media->folders()->create('New folder name');
$media->folders()->delete('11a283ed-a64e-424a-aefc-6aa98971d529');
$media->tags()->get();
$media->tags()->associate(['name' => 'Tag Name']);
$media->tags()->disassociate(['name' => 'Tag Name']);
```

Using the `Folder` facade:

```
use Meema\LaravelMeema\Facades\Folder;

Folder::create('New folder name');
Folder::get();

// specific uuids
Folder::get('11a283ed-a64e-424a-aefc-6aa98971d529', '1556fcb8-693e-4431-8b16-3b2b7bb8fcc7');
Folder::search('folder-name');

// this will return a Response instance
$folder = Folder::find('11a283ed-a64e-424a-aefc-6aa98971d529');

// you may chain other methods that require an id
$folder->update('updated-folder-name')
$folder->delete();
$folder->archive();
$folder->unarchive();
$folder->duplicate();

// Relationships with other models.
// Continuing with the chaining methods we used earlier.
$folder->media()->get();
$folder->tags()->get();
$folder->tags()->associate(['tag_id' => 7]);
$folder->tags()->disassociate(['tag_id' => 7]);
```

Using the `Tag` facade:

```
Tag::get();

// specific uuids
Tag::get(1, 2, 3);

// this will return a Response instance
$tag = Tag::find(1);

// you may chain other methods that require an id
$tag->update('red-500'); // You will have to use tailwind CSS color palettes.
$tag->delete();
$tag->media()->get();
```

Using the `Favorite` facade:

```
Favorite::create(['name' => 'New Favorite Name', 'icon' => 'favorite-icon']);
Favorite::get();

// specific uuids
Favorite::get('11a283ed-a64e-424a-aefc-6aa98971d529', '1556fcb8-693e-4431-8b16-3b2b7bb8fcc7');

// this will return a Response instance
$favorite = $client->favorites()->find(1);

// you may chain other methods that require an id
$favorite->update(['name' => 'Updated Favorite Name', 'icon' => 'updated-favorite-icon']);
$favorite->delete();
```

🧪 Testing
---------

[](#-testing)

```
./vendor/bin/pest
```

📈 Changelog
-----------

[](#-changelog)

Please see our [releases](https://github.com/meemalabs/laravel-meema/releases) page for more information on what has changed recently.

💪🏼 Contributing
---------------

[](#-contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

🏝 Community
-----------

[](#-community)

For help, discussion about best practices, or any other conversation that would benefit from being searchable:

[Laravel Meema on GitHub](https://github.com/meemalabs/laravel-meema/discussions)

For casual chit-chat with others using this package:

[Join the Meema Discord Server](https://discord.meema.io)

🚨 Security
----------

[](#-security)

Please review [our security policy](https://github.com/meemalabs/laravel-meema/security/policy) on how to report security vulnerabilities.

🙏🏼 Credits
----------

[](#-credits)

- [Chris Breuer](https://github.com/Chris1904)
- [All Contributors](../../contributors)

📄 License
---------

[](#-license)

The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 57.1% 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 ~0 days

Total

4

Last Release

1842d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a97b94acce2703a63911978deee2cd58935b7df44ea8513125dfef8e48f2f079?d=identicon)[Chris1904](/maintainers/Chris1904)

---

Top Contributors

[![glennmichael123](https://avatars.githubusercontent.com/u/29087513?v=4)](https://github.com/glennmichael123 "glennmichael123 (28 commits)")[![chrisbbreuer](https://avatars.githubusercontent.com/u/6228425?v=4)](https://github.com/chrisbbreuer "chrisbbreuer (19 commits)")[![harlekoy](https://avatars.githubusercontent.com/u/10015302?v=4)](https://github.com/harlekoy "harlekoy (2 commits)")

---

Tags

apifile-managerimage-editinglaravelmediamedia-managementmeemaphpvideo-convertervideo-streaminglaravelMedia managementMeemaimage editingvideo converterlaravel-meema

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/meema-laravel-meema/health.svg)

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

###  Alternatives

[rakibdevs/openweather-laravel-api

Laravel package to connect https://openweathermap.org/ to get customized weather data for any location on the globe immediately

7648.2k](/packages/rakibdevs-openweather-laravel-api)

PHPackages © 2026

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