2017 © Pedro PelĆ”ez
 

library easy-crud

simple crud class for php

image

izniburak/easy-crud

simple crud class for php

  • Saturday, August 22, 2015
  • by izniburak
  • Repository
  • 1 Watchers
  • 2 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 13 % Grown

The README.md

easy-crud

Total Downloads Latest Stable Version Latest Unstable Version License, (*1)

Install

composer.json file:, (*2)

{
    "require": {
        "izniburak/easy-crud": "dev-master"
    }
}

after run the install command., (*3)

$ composer install

OR run the following command directly., (*4)

$ composer require izniburak/easy-crud:dev-master

Example Usage

require 'vendor/autoload.php';

$crud = new \buki\easyCrud($pdoObject);

$records = $crud->prepare([
            'table' => 'test',
            'where' => [
              'id = ? AND status = ?', [10, 1]
            ],
            'orderBy' => ['id' => 'desc'],
            'limit' => 10
          ])->all();

var_dump($records);

Docs

Documentation coming soon..., (*5)

Support

izniburak's homepage, (*6)

izniburak's twitter, (*7)

Licence

MIT Licence, (*8)

The Versions

22/08 2015

dev-master

9999999-dev https://github.com/izniburak/easy-crud

simple crud class for php

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

sql php crud