Download the PHP package zhaohehe/zrepository without Composer

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

z-repository

z-repository是一个为laravel5提供的数据库抽象层,目的是为了将应用的数据库操作和核心的业务逻辑分离开,保证controller的精致。

简介

z-repository提供了criteria和transformer来接管数据库的查询和查询结果的展示,使得各部分分离开来,解开耦合。同时repository接管model层,使得model层专注于数据模型本身的定义,比如relationship,fillable等

安装

在终端中输入以下命令,通过composer来安装

使用

repository

首先,创建你的repository类,你可以在命令行中使用如下命令自动生成该类

其中,--model Poem 是可选的,用来指定repository中model的名称,默认情况下,会根据repository的名称自动产生model名,你可以在repository.php配置文件中设置该类的命名空间等,后面的criteria和transforme的自动生成也是这样,生成的文件如下:

当然,你也可以手动创建repository类,该类务必继承自 ,且实现model()方法,该方法用来指定该repository对应的数据模型。 现在,来创建你的 数据模型:

最后,在你的controller中使用repository

暂时可用的方法

下面这些方法是暂时可以使用的,显然不够,后面会陆续添加

Zhaohehe\Repositories\Contracts\RepositoryInterface

例子

创建一条记录:

更新记录:

删除记录:

按id查找;

你可以指定要查询的字段:

根据指定字段的值来查找.

多个条件查找

Criteria

Criteria是一个让你可以根据具体的或者一系列复杂的条件来向你的repository发起查询的方式,你可以将一些可能会在多个接口或者情况下用到的查询条件放到这里,到达复用的目的,而且可以将复杂的查询条件从你的controller中抽离出来,精简代码的同时,也使得各部分之间的耦合更加松散,你的criteria类必须继承自 抽象类。

一个简单的例子,比如你要查询所有唐代的诗词,(实际情况下,查询的条件可能要复杂的多,否则就没必要将它抽离出来了):

现在,在你的controller里面,你可以调用repository的方法:

Transformer

Transformers 的作用是按照接口的需要来包装你从数据库查询出来的结果,你可以在这里方便的设置你需要哪些字段,每一个字段的数据类型,或者你要联查多个表来组成接口所需要的数据时,你可以在这里利用eloquent的relationship方便的完成,每一个Transformer都需要继承自抽象类,这是一个第三方的包,需要你用composer引入

用以下命令创建一个Transformer

这会创建下面这样的一个Transformer类,比如你需要从接口返回一首诗的id,title,和author,而你的Poem表里面只存有author_id,你可以用Model的relationship方便的做到,这需要你在Poem Model中去定义和Author Model之间的关系,这部分详情请看官方文档的介绍:

使用repository

在repository中使用

你也可以在controller中调用方法来使用

在Model后使用

当你在对repository使用了transformer之后,也许在某些场景下你不希望查询结果自动的被transform掉,你可以调用repository的方法来跳过转换。这个时候你可以让你的Model去实现接口,这样你就可以在你想要的时候直接调用Model的方法来灵活地呈现你的查询结果的样式,当你的Model实现了接口之后,你必须要使用来赋予Model相应的功能,代码如下:

现在,你可以随心所欲地transform查询结果了: transform

EventObserver

事件观察者允许你在repository中方便的针对数据库操作流程中的某一个具体的节点绑定你想要执行的事件

在Model中实现接口

如果你想开启该功能,你需要在你的Model类中实现接口,并使用来赋予你的数据模型该功能,你的Model类大概会长成这样:

在repository中注册observer

比如你想在每一次新建一条Poem记录之后,将当前的某些信息记录到操作日志中,你可以在PoemRepository中重载方法,代码如下:

这样,当你在调用repository的方法创建新的记录的时候,会在创建的动作结束后被调用。

可用的方法

以上方法会在相应的节点被激活。

最后

以上的思路和代码是在阅读了很多大神的代码之后产生的,尤其是这个,很荣幸可以站在巨人们的肩膀上。


All versions of zrepository with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
league/fractal Version ^0.13
illuminate/support Version ^5.2
illuminate/database Version ^5.2
illuminate/filesystem Version ^5.2
illuminate/console Version ^5.2
illuminate/events Version ^5.6
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 zhaohehe/zrepository contains the following files

Loading the files please wait ....