Download the PHP package reasno/lazy-loader without Composer

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

Hyperf懒加载器

Build Status

Hyperf的长生命周期依赖注入在项目启动时完成。这意味着长生命周期的类需要注意:

目前解决方案是:只在实例中注入 ContainerInterface ,而其他的组件在非构造函数执行时通过 container 获取。PSR-11中指出:

「用户不应该将容器作为参数传入对象然后在对象中通过容器获得对象的依赖。这样是把容器当作服务定位器来使用,而服务定位器是一种反模式」

也就是说这样的做法虽然有效,但是从设计模式角度来说并不推荐。

另一个方案是使用PHP中常用的惰性代理模式,注入一个代理对象,在使用时再实例化目标对象。本组件依赖Hyperf DI组件设计了基于类型提示(TypeHint)的懒加载注入功能。

安装

实战

下面这个例子会发生循环依赖:

安装本组件后,修改一个地方,就不会发生死循环:

请耐心找不同...

我们只替换了 Psr\EventDispatcher\EventDispatcherInterfaceLazy\Psr\EventDispatcher\EventDispatcherInterface ,Hyperf DI会识别这个类型提示(TypeHint),自动生成一个代理类并注入到构建函数里。

本组件是完全基于Hyperf DI的,在任何Hyperf DI能够解析的命名空间前加上 Lazy\ 都可以实现懒加载。被代理对象总是从容器中获取的,也就是说用户在Dependencies配置项中对依赖关系做的任何修改都会被懒加载器尊重。

细节

当该代理对象执行下列操作时,被代理对象才会被真正实例化。

当您需要获得被代理对象时,可以主动执行 getInstance 方法获取:


All versions of lazy-loader with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
ext-swoole Version >=4.4
hyperf/di Version 1.1.*
hyperf/utils Version ^1.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 reasno/lazy-loader contains the following files

Loading the files please wait ....