Giter Site home page Giter Site logo

redbean-single-file's Introduction

RedBeanPHP 4 Single File

In this package there is only one file - rb.php. The one you would get by clicking Download RedBeanPHP on the redbean download page.

Unfortunately the composer workaround provided there does not allow creating composer packages with redbean dependency, it only allows adding redbean to your project locally (see composer FAQ for details).

Also, the package gabordemooij/redbean created from the redbean github repo only provides a way to get the source and does not let you just require it and use. For example after $ composer require gabordemooij/redbean You will not be able to run the following file:

<?php
require 'vendor/autoload.php';
R::setup();

This package lets you do it.

$ composer require yeriomin/redbean-single-file

...Original readme:

RedBeanPHP 4 KickStart

Current Build Status: Build Status

RedBeanPHP 4 KS is an easy to use ORM tool that stores beans directly in the database and creates all tables and columns required on the fly. On the other hand it allows plain SQL to search the database. In fact RedBeanPHP is some sort of combination between document oriented database tools like mongoDB or couchDB and traditional relational database systems like MySQL. It offers the best of both worlds: SQL and no-SQL. You work with no-SQL if you interact with objects will you simply turn the switch and work with SQL if you want to do some typical database tasks like searching or quickly grabbing something out of the data store with specially crafted SQL. RedBean also has excellent performance because it can freeze the database schema which means it no longer scans schemas.

The KickStart Edition of RedBeanPHP is meant for RAD, prototyping and offers easy-to-use interfaces and a wonderful works-out-of-the-box experience.

If you already know the power of RedBeanPHP and you would like to use RedBeanPHP in a more complex project or integrate RedBeanPHP in an existing project you might find the RedBeanPHP 'Adaptive' Edition an interesting solution.

Databases Supported

RedBeanPHP supports MySQL/InnoDB, MariaDB/InnoDB, PostgreSQL, SQLite3 and CUBRID.

Quick Example

How we store a book object with RedBeanPHP:

$book = R::dispense("book");
$book->author = "Santa Claus";
$book->title = "Secrets of Christmas";
$id = R::store( $book );

Yep, it's that simple.

This Github account is for development only. If you want to use RedBeanPHP 4 KickStart please visit the website and download the ALL-in-ONE PHAR file. This should work out-of-the-box with no configuration at all.

More information

For more information about RedBeanPHP please consult the RedBeanPHP online manual at:

http://www.redbeanphp.com/

redbean-single-file's People

Contributors

yeriomin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.