2017 © Pedro Peláez
 

framework medoo

The lightest PHP database framework to accelerate development

image

catfan/medoo

The lightest PHP database framework to accelerate development

  • Thursday, June 14, 2018
  • by catfan
  • Repository
  • 216 Watchers
  • 3239 Stars
  • 173,296 Installations
  • PHP
  • 112 Dependents
  • 0 Suggesters
  • 951 Forks
  • 156 Open issues
  • 32 Versions
  • 14 % Grown

The README.md

, (*1)

Build Status Total Downloads Latest Stable Version License Backers on Open Collective Sponsors on Open Collective , (*2)

The lightweight PHP database framework to accelerate development., (*3)

Features

  • Lightweight - Single-file framework with minimal dependencies., (*4)

  • Easy - Simple and intuitive API for quick integration., (*5)

  • Powerful - Supports complex SQL queries, data mapping, and SQL injection prevention., (*6)

  • Compatible - Works with MySQL, MariaDB, PostgreSQL, SQLite, MSSQL, Oracle, Sybase, and more., (*7)

  • Friendly - Integrates seamlessly with Laravel, CodeIgniter, Yii, Slim, and other PHP frameworks., (*8)

  • Free - Licensed under MIT, free to use for any purpose., (*9)

Requirements

  • PHP 7.3 or later
  • PDO extension enabled

Get Started

Install via composer

Add Medoo to the composer.json configuration file., (*10)

$ composer require catfan/medoo

Then update Composer, (*11)

$ composer update
// Require Composer's autoloader
require 'vendor/autoload.php';

// Import Medoo namespace
use Medoo\Medoo;

// Initialize database connection
$database = new Medoo([
    'type' => 'mysql',
    'host' => 'localhost',
    'database' => 'name',
    'username' => 'your_username',
    'password' => 'your_password'
]);

// Insert data
$database->insert('account', [
    'user_name' => 'foo',
    'email' => 'foo@bar.com'
]);

// Retrieve data
$data = $database->select('account', [
    'user_name',
    'email'
], [
    'user_id' => 50
]);

echo json_encode($data);

// [{
//    "user_name" : "foo",
//    "email" : "foo@bar.com",
// }]

Contribution Guidelines

Before submitting a pull request, ensure compatibility with multiple database engines and include unit tests when possible., (*12)

Testing & Code Style

  • Run phpunit tests to execute unit tests.
  • Use php-cs-fixer fix to enforce code style consistency.

Commit Message Format

Each commit should begin with a tag indicating the type of change:, (*13)

  • [fix] for bug fixes
  • [feature] for new features
  • [update] for improvements

Keep contributions simple and well-documented., (*14)

License

Medoo is released under the MIT License., (*15)

Support Our Other Product

Gear Browser - Web Browser for Geek, (*20)

Gear Browser, (*21)

The Versions

14/06 2018

dev-master

9999999-dev https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • ext-pdo *
  • php >=5.4

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

14/06 2018

v1.5.7

1.5.7.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

14/06 2018

dev-develop

dev-develop https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • ext-pdo *
  • php >=5.4

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

26/03 2018

v1.5.6

1.5.6.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

07/03 2018

v1.5.5

1.5.5.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

08/01 2018

v1.5.4

1.5.4.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

25/12 2017

v1.5.3

1.5.3.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

01/12 2017

v1.5.2

1.5.2.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

24/11 2017

v1.5.1

1.5.1.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

21/11 2017

v1.5a

1.5.0.0-alpha https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

20/11 2017

v1.5

1.5.0.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

26/10 2017

1.5.x-dev

1.5.9999999.9999999-dev https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

24/06 2017

v1.4.5

1.4.5.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

02/06 2017

v1.4.4

1.4.4.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

22/05 2017

v1.4.3

1.4.3.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

16/05 2017

v1.4.2

1.4.2.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

12/05 2017

v1.4.1

1.4.1.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

10/05 2017

v1.4

1.4.0.0 https://medoo.in

The lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql postgresql lightweight mssql mysql mariadb sqlite oracle php framework

04/04 2017

dev-feature-prepare

dev-feature-prepare http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

17/02 2017

v1.2.1

1.2.1.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

08/02 2017

v1.2

1.2.0.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

05/09 2016

v1.1.3

1.1.3.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

07/07 2016

v1.1.2

1.1.2.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

28/06 2016

v1.1.1

1.1.1.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

26/06 2016

v1.1

1.1.0.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

14/02 2016

v1.0.2

1.0.2.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

05/10 2015

v1.0

1.0.0.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

11/02 2015

v0.9.8

0.9.8.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

04/12 2014

v0.9.7

0.9.7.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql lightweight mssql mysql sqlite php framework

15/08 2014

v0.9.6.2

0.9.6.2 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql mssql mysql sqlite

08/06 2014

v0.9.6

0.9.6.0 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql mssql mysql sqlite

28/04 2014

v0.9.5.3

0.9.5.3 http://medoo.in

The Lightest PHP database framework to accelerate development

  Sources   Download

MIT

The Requires

  • php >=5.1
  • ext-pdo *

 

by Angel Lai

database sql mssql mysql sqlite