Download the PHP package breier/mykrorm without Composer

On this page you can find all versions of the php package breier/mykrorm. 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 mykrorm

MykrORM

This library started with the idea of providing less than minimal DB functionality with still some intuitive automated stuff.

In order to handle data models and its properties in a clean code manner (readable and maintainable) I developed this library on top of PDO. Please enjoy (use at your own risk XD).

* You can find all the methods from PDO and their documentation at php.net/manual/class.pdo.

Table of Contents:

Model Example

This is a code example of a model that extends MykrORM

Further Information

The first time you try to "Create" an entry of that model, the table will be created in the database.

If you update the model adding more columns they will be added on creation as well.

While Create, Update and Delete deal with the current instance, "Read" (find) returns an ExtendedArray of instances of the Model.

Properties listed in $this->dbProperties should be declared with protected visibility. MykrORM will provide automatic getters and setters for them.

Methods in MykrORM

This is the abstract class that implements the ORM and it's also the base for every model you wish to create.

abstract protected function getDSN(): string

Returns the DSN for PDO connection (has to be implemented by the extending class).

Code Example

protected function getDBProperties(): ExtendedArray

Get DB Properties (ensure it is an ExtendedArray instance)

Code Example

protected function getConnection(): PDO

Gets the stored PDO object with a valid connection.

Code Example

public function __get(string $propertyName)

Provides automatic getters for DB properties.

Code Example

public function __set(string $name, $value): void

Maps setters automatically for fetchObject() PDO mode.

Code Example

final protected static function camelToSnake(string $string): string

[static] Converts Camel-Case to Snake-Case (from Property to DB).

Code Example

final protected static function snakeToCamel(string $string): string

[static] Converts Snake-Case to Camel-Case (from DB to Property).

Code Example

CRUD Methods

This methods are embedded in MykrORM but I rather list them here for better organization.

public function create(): void

Insert new row to the model table with current properties.

Code Example

public function find($criteria): ExtendedArray

Get all rows of the model table that matches $criteria (returns an ExtendedArray with model instances).

Code Example

public function update($criteria): void

Update a row of the model table that matches $criteria.

* It internally uses find to get the original object.

Code Example

public function delete(): void

Delete a row of the model table with current properties.

Code Example

protected function getProperties(): ExtendedArray

Get database available properties in an associative array manner.

Code Example

protected function bindIndexedParams(PDOStatement $statement, ExtendedArray $parameters): void

Binds parameters to indexed (?) placeholders in the prepared statement.

* Specially useful to detect booleans and nulls and bind them properly.

Code Example

final protected function validateCriteria($criteria): bool

Make sure that any key in the criteria matches "dbProperties".

Code Example

protected function findPrimaryKey(): ExtendedArray

Get DB property set as 'PRIMARY KEY' (or the first index if not found).

Code Example

Table Management

A little bit of magic that actually limits the DB structure to a very simple one.

protected function createTableIfNotExists(): void

Checks if a table exists for the current extending model.
If it doesn't, it creates it.
If it does, it further checks for alterations to alter it.

Code Example

All versions of mykrorm with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3
breier/extended-array Version ^2.1
ext-pdo Version *
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 breier/mykrorm contains the following files

Loading the files please wait ....