2017 © Pedro Peláez
 

library juggler

A lightest yet powerful PHP database framework

image

upfor/juggler

A lightest yet powerful PHP database framework

  • Monday, October 23, 2017
  • by shockerli
  • Repository
  • 1 Watchers
  • 7 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Juggler

PHP lightweight database (MySQL) framework, (*1)

中文介绍, (*2)

Main Features

  • Common database operation functions
  • WHERE combination conditions vary
  • Supports transaction callback operations
  • Support for split - sheet callback processing data
  • Supports cache query data
  • Supports multiple table queries
  • Support multiple data bindings
  • Data security filtering guarantee
  • Introduction, packaging is easier

Requirement

  • PHP 5.5+
  • Support the PDO, extension pdo_mysql installed

Get Started

Install via composer, (*3)

$ composer require upfor/juggler
<?php

use Upfor\Juggler\Juggler;

require 'vendor/autoload.php';

// Config and connect server
$config = array(
    'host' => '127.0.0.1',
    'port' => 3306,
    'dbname' => 'db_name',
    'username' => 'your_username',
    'password' => 'your_password',
    'charset' => 'utf8',
    'prefix' => 'db_pre_',
);
$db = new Juggler($config);

// SELECT `user_id`, `username` FROM `user` WHERE `user_id` >= 20
$data = $db->table('user')->field(array('user_id', 'username'))->where('user_id|>=', 20)->getList();
echo json_encode($data);

License

Juggler is under the MIT license., (*4)

The Versions

23/10 2017

dev-master

9999999-dev https://github.com/upfor/juggler

A lightest yet powerful PHP database framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pdo_mysql *

 

The Development Requires

framework php mysql upfor

23/10 2017

1.0.2

1.0.2.0 https://github.com/upfor/juggler

A lightest yet powerful PHP database framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pdo_mysql *

 

The Development Requires

framework php mysql upfor

23/10 2017

dev-develop

dev-develop https://github.com/upfor/juggler

A lightest yet powerful PHP database framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pdo_mysql *

 

The Development Requires

framework php mysql upfor

20/07 2017

1.0.1

1.0.1.0 https://github.com/upfor/juggler

A lightest yet powerful PHP database framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pdo_mysql *

 

The Development Requires

framework php mysql upfor

10/05 2017

1.0

1.0.0.0 https://github.com/upfor/juggler

A lightest yet powerful PHP database framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

framework php mysql upfor