Download the PHP package rawebone/ormish without Composer

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

Ormish

Ormish is an Object Relational Mapper with an emphasis on simplicity. It relies on a certain amount of extension and adherence to database conventions. It has one, generic SQL connector at the moment for maximum compatibility.

The library aims to provide an active record pattern to database access, with a basic syntax for general use and an ability to easily extend for your own purposes. I am writing this primarily to learn the Domain and for my own purposes, unless there is significant interest for other parties.

Note: This is a work in progress

Installation

Installation is via Composer:

Usage

The ORM is pretty simple to get to grips with:

The markup for entities is also quite straight forward:

There is a little more boilerplate required for this compared to other systems, but the payoff is that you have a simple mechanism to keep everything in check.

Transactions

By default, operations on the database are not carried out inside of transactions, however one can achieve this by the use of the Transaction object:

Contributing

Namespaces

The root namespace Rawebone\Ormish is reserved for objects which are directly visible to the end user (like Database, Table, Entity) for easy use of the API.

The Rawbone\Ormish\Actions namespace is for Actions that can be applied to a Gateway object (for example: $table->find(1) would refer to a Finder action). The goal is to create small objects containing the logic required for working with the database in a clean and simple way.

The Rawebone\Ormish\Utilities namespace is for objects which are consumed internally in the API and have no outward value to the users. The end user, for example, does not need to see the Shadow or NullShadow objects to use the API.

Roadmap

For Version 0.2.0

For Version 0.3.0

For Version 0.4.0

Testing

All tests are being run with PhpSpec.

License

MIT License. Go hog wild.


All versions of ormish with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
psr/log Version *
phpdocumentor/reflection-docblock Version 2.0.1
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 rawebone/ormish contains the following files

Loading the files please wait ....