Download the PHP package thomasjbradley/micromodel without Composer

On this page you can find all versions of the php package thomasjbradley/micromodel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package micromodel

MicroModel

A really basic ORM-like form and table mapper, for working with Silex, Symfony Forms, and Doctrine DBAL; supports single tables without relationships.


Example table

Here’s a table we’ll use for the rest of the code samples.

`planets`

| id       | name    | orbital_period | last_updated |
| (PK, AI) | (text)  | (number)       | (text)       |
------------------------------------------------------
| 1        | Mercury | 87.97          | 1982-10-28   |
| 2        | Venus   | 224.70         | 1980-05-21   |
| 3        | Earth   | 365.25         | 1981-06-04   |

How to use

  1. Install with Composer.

  2. Create a PHP class in your Silex application that extends MicroModel. The class must be named identically to the table. Capitalization doesn’t matter, the class name/table name will be converted to lowercase.

  3. Then make a new instance of your model, passing the Silex\Application.

Defining fields

When defining fields, the options array inherits everything from Symfony\Form options arrays.

Always define the primary key field first.

Field definition extra options

MicroModel adds a few extra options to the array.

Methods

☛ __construct( Silex\Application $app [, mixed $clauses = null ] )

Set up the model and optionally read a single item immediately by specifying $clauses.

☛ defineField( $name [, string $type = 'text' [, array $options = array() ]] )

Define a new field on the model to match a field in the table. Usually called from within the defineSchema() method. Refer to defining fields.

@return$this

☛ find( [ string|array $order = null [, array $where = array() ]] )

Get a bunch of results from the table, optionally sorting them. Without any arguments find() will return every entry in the database. Will return an array of the model objects.

@return — an array of objects, each object is an instance of your model.

☛ create()

INSERT the current object into the table using the property values. After insertion, the primary key field is populated with lastInsertId. The data is not validated before creation is attempted.

@return$this

☛ read( mixed $clauses )

Read a single entry from the table, converting all the fields to properties of the object.

@return$this

☛ update()

UPDATE the current object in the table using the property values. Uses the field marked as primary key for the WHERE clause. The data is not validated before updating is attempted.

@return$this

☛ delete()

DELETE the current object from the table. Uses the field marked as primary key for the WHERE clause.

@return$this

☛ getForm( [ boolean $csrfProtection = true ] )

Returns a Symfony\Form object for the model. All constraints and options from the field registration are used.

@return — Symfony\Form

☛ jsonSerialize()

Double duty: returns a simplified version of all the fields’ values in an associative array, and in PHP/5.4 it is the JsonSerializer implementation.

@return — an array containing all the fields and their values

☛ isValid()

Validates the information in the object against the field constraints.

@returnboolean

☛ getErrors()

Return an array of all the validation error messages produced by Symfony\Form. Generally called after isValid() if you need to see the error messages. If there are no error messages the array is empty.

@returnarray


License

MicroModel is licensed under the BSD 3-Clause license.


All versions of micromodel with dependencies

PHP Build Version
Package Version
Requires silex/silex Version 1.0.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package thomasjbradley/micromodel contains the following files

Loading the files please wait ....