承接 rawebone/ormish 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rawebone/ormish

Composer 安装命令:

composer require rawebone/ormish

包简介

A lightweight ORM

README 文档

README

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:

{
    "require": {
        "rawebone/ormish": "dev-master"
    }
}

Usage

The ORM is pretty simple to get to grips with:

<?php

use Rawebone\Ormish\Table;
use Rawebone\Ormish\Factory;

// We use the factory to build a connection
$factory = new Factory("sqlite::memory:", "", "");
$orm = $factory->build();

// We then "Attach" tables to the container - these are used to provide the
// information we need to connect tables to classes and give options for
// the way SQL should be generated.
$orm->attach(new Table('My\Models\Entity', "data_table"));

// We can then access the database table via it's name, which returns a gateway
// object. This allows us to perform actions such as finding data on our table
// using the options from the Table object.
$gateway = $orm->data_table();
$gateway = $orm->get("data_table");

// We can then find a record
$model = $gateway->find(1);

// Data is accessed by properties
$model->name = "Barry";

// Relationships are accessed by methods
$model->sons(); // Sons[]

// We can save or delete the model directly 
$model->save();
$model->delete();

// Creates a new instance of the Model for our table
// An array of initial data can be passed in this call to populate the model.
$fresh = $gateway->create(array("name" => "john")); 

The markup for entities is also quite straight forward:

namespace My\Models;

use Rawebone\Ormish\Entity as BaseEntity;

/**
 * Given that we do not have "real" methods and properties to provide an
 * interface, we can use the annotations (courtesy of ApiGen) for your IDE,
 * if it supports them:
 * 
 * @property int $id
 * @property string $name
 * @property string $complex_name;
 * @method \My\Models\Other sons()
 */
class Entity extends BaseEntity
{
    public function sons()
    {
        return $this->getDatabase()->findWhere("parent_id = ?", $this->id);
    }
}

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:

use Rawebone\Ormish\Transaction;

$tran = new Transaction($orm->getExecutor(), function () use ($entity) {
    $entity->save();
    $entity->delete();
});

$tran->run();

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

  • Complete implementation of Actions and remove this functionality from the Gateway object. (100%)
  • Complete move of objects into the Utilities namespace which have no outward value to end users. (90%)
  • Change to an Exception model for errors. (100%)

For Version 0.3.0

  • Implement a type mapping system. This will be breaking as will it require additional annotations on the Entities.
  • Implement annotations for Tables and deprecate attaching tables manually. This will help keep the Entities close to the database.
  • Implement Relationship handling in a similar fashion to the Actions.

For Version 0.4.0

  • Implement caching (hopefully via a PSR) of results and possibly configuration
  • Basic schema manipulation

Testing

All tests are being run with PhpSpec.

License

MIT License. Go hog wild.

rawebone/ormish 适用场景与选型建议

rawebone/ormish 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 39 次下载、GitHub Stars 达 1, 最近一次更新时间为 2014 年 01 月 14 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「database」 「orm」 「lightweight」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 rawebone/ormish 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 rawebone/ormish 我们能提供哪些服务?
定制开发 / 二次开发

基于 rawebone/ormish 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 39
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-01-14