PHPackages                             absolutelydigital/medoo-laravel - 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. [Database &amp; ORM](/categories/database)
4. /
5. absolutelydigital/medoo-laravel

ActiveLibrary[Database &amp; ORM](/categories/database)

absolutelydigital/medoo-laravel
===============================

Laravel Facade and ServiceProvider for The Lightest PHP database framework to accelerate development

3571PHP

Since Jun 1Pushed 7y ago1 watchersCompare

[ Source](https://github.com/absolutelydigital/medoo-laravel)[ Packagist](https://packagist.org/packages/absolutelydigital/medoo-laravel)[ RSS](/packages/absolutelydigital-medoo-laravel/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-medoo
-------------

[](#laravel-medoo)

This package provides a Facade and ServiceProvider for the database framework *medoo*. It might be useful in Lumen or when you already have existing code that's based on medoo and you would like to port it to Laravel/Lumen instead of rewriting the whole code to use the Query Builder or Eloquent.

It uses the `default` connection.

### Installation

[](#installation)

1. Install the package

`composer require absolutelydigital/medoo-laravel`

1. Add the Service Provider to the providers array in `config/app.php`

```
absolutelydigital\LaravelMedoo\MedooServiceProvider::class,
```

1. Add alias in `config/app.php`

```
'Medoo'            => absolutelydigital\LaravelMedoo\MedooFacade::class,
```

### Usage

[](#usage)

```
Medoo::select("table", "*");
```

See [official medoo documentation](http://medoo.in/doc) for more.

---

[Medoo](http://medoo.in)
------------------------

[](#medoo)

> The Lightest PHP database framework to accelerate development

Main Features
-------------

[](#main-features)

- **Lightweight** - 20KB around with only one file.
- **Easy** - Extremely easy to learn and use, friendly construction.
- **Powerful** - Support various common and complex SQL queries.
- **Compatible** - Support various SQL database, including MySQL, MSSQL, SQLite, MariaDB, Sybase, Oracle, PostgreSQL and more.
- **Security** - Prevent SQL injection.
- **Free** - Under MIT license, you can use it anywhere if you want.

Get Started
-----------

[](#get-started)

### Install via composer

[](#install-via-composer)

Add Medoo to composer.json configuration file.

```
$ composer require absolutelydigital/Medoo

```

And update the composer

```
$ composer update

```

```
// If you installed via composer, just use this code to requrie autoloader on the top of your projects.
require 'vendor/autoload.php';

// Or if you just download the medoo.php into directory, require it with the correct path.
require_once 'medoo.php';

// Initialize
$database = new medoo([
    'database_type' => 'mysql',
    'database_name' => 'name',
    'server' => 'localhost',
    'username' => 'your_username',
    'password' => 'your_password',
    'charset' => 'utf8'
]);

// Enjoy
$database->insert('account', [
    'user_name' => 'foo',
    'email' => 'foo@bar.com',
    'age' => 25,
    'lang' => ['en', 'fr', 'jp', 'cn']
]);
```

Contribution Guides
-------------------

[](#contribution-guides)

For most of time, Medoo is using develop branch for adding feature and fixing bug, and the branch will be merged into master branch while releasing a public version. For contribution, submit your code to the develop branch, and start a pull request into it.

License
-------

[](#license)

Medoo is under the MIT License.

Links
-----

[](#links)

- Official website:
- Documentation:

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 85.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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/3a17044f46316bef4f099fe21e5e7ba4a2e54fe22610e73de993e9faecea9f90?d=identicon)[absolutelydigital](/maintainers/absolutelydigital)

---

Top Contributors

[![charbelhage-0](https://avatars.githubusercontent.com/u/188617458?v=4)](https://github.com/charbelhage-0 "charbelhage-0 (6 commits)")[![georgenacouzi](https://avatars.githubusercontent.com/u/8582991?v=4)](https://github.com/georgenacouzi "georgenacouzi (1 commits)")

### Embed Badge

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

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

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k115.1M102](/packages/jdorn-sql-formatter)[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[mongodb/mongodb

MongoDB driver library

1.6k64.0M546](/packages/mongodb-mongodb)[ramsey/uuid-doctrine

Use ramsey/uuid as a Doctrine field type.

90340.3M211](/packages/ramsey-uuid-doctrine)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)

PHPackages © 2026

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