2017 © Pedro Peláez
 

library rentgen

Database abstraction layer for information and manipulation schema

image

czogori/rentgen

Database abstraction layer for information and manipulation schema

  • Monday, April 9, 2018
  • by czogori
  • Repository
  • 0 Watchers
  • 1 Stars
  • 1,948 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 3 % Grown

The README.md

Rentgen

Build Status Latest Stable Version Scrutinizer Code Quality, (*1)

Database abstraction layer for both information and manipulation schema, (*2)

Installation

Using composer:, (*3)

{
    "require": {        
        "czogori/rentgen": "dev-master"
    }
}

Basic usage

Create sample table, (*4)

$rentgen = new Rentgen();
$manipulation = $rentgen->createManipulationInstance();

$table = new Table('foo');
$table->addColumn(new StringColumn('bar'));
$table->addColumn(new IntegerColumn('baz', array('not_null' => true)));
$manipulation->create($table);

Get information about foo table, (*5)

$info = $rentgen->createInfoInstance();
$fooTable = $info->getTable(new Table('foo'));

The Versions

09/04 2018

dev-master

9999999-dev https://github.com/czogori/Rentgen

Database abstraction layer for information and manipulation schema

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arek Jaskólski

database postgresql

05/06 2015

dev-postgres-only

dev-postgres-only https://github.com/czogori/Rentgen

Database abstraction layer for information and manipulation schema

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arek Jaskólski

database postgresql