承接 seeren/container 相关项目开发

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

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

seeren/container

Composer 安装命令:

composer require seeren/container

包简介

Autowire and configure dependencies

README 文档

README

Build Require Coverage Download Codacy Badge Version

Autowire and configure dependencies

Installation

Seeren\Container is a PSR-11 container interfaces implementation

composer require seeren/container

Seeren\Container\Container

The container create, build, store and share instances

use Seeren\Container\Container;

$container = new Container();

$foo = $container->get('Dummy\Foo');

Autowiring

Dependencies are resolved using type declaration

namespace Dummy;

class Foo
{
    public function __construct(Bar $bar){}
}

class Bar 
{
    public function __construct(Baz $baz){}
}

class Baz {}

Interfaces

namespace Dummy;

class Foo {
    public function __construct(BarInterface $bar){}
}

Interfaces are resolved using configuration file by default in /config/services.json

{
  "parameters": {},
  "services": {
    "Dummy\\Foo": {
      "Dummy\\BarInterface": "Dummy\\Bar"
    }
  }
}

Include path can be specified at construction

project/
└─ config/
   └─ services.json

Parameters

Parameters and primitives are resolved using configuration file

namespace Dummy;

class Foo
{
    public function __construct(string $bar){}
}
{
  "parameters": {
    "message": "Hello"
  },
  "services": {
    "Dummy\\Foo": {
      "bar": ":message"
    }
  }
}

Methods

Methods can use autowiring

namespace Dummy;

class Foo
{

    public function __construct(BarInterface $bar){}

    public function action(int $id, Baz $baz)
    {
        return 'Hello';
    }

}
use Seeren\Container\Container;

$container = new Container();

$message = $container->call('Dummy\Foo', 'action', [7]);

echo $message; // Hello

License

This project is licensed under the MIT License

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-10-17

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固