定制 jsoumelidis/zend-sf-di-config 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

jsoumelidis/zend-sf-di-config

最新稳定版本:0.5.1

Composer 安装命令:

composer require jsoumelidis/zend-sf-di-config

包简介

PSR-11 Symfony DI container configurator for ZF and Expressive applications

README 文档

README

Build Status Coverage Status

This library provides utilities to configure a PSR-11 compatible Symfony DI Container using zend-servicemanager configuration.

Installation

Run the following to install this library:

$ composer require jsoumelidis/zend-sf-di-config

Configuration

To get a configured Symfony DI container, do the following:

<?php use JSoumelidis\SymfonyDI\Config\Config; use JSoumelidis\SymfonyDI\Config\ContainerFactory; $factory = new ContainerFactory(); $container = $factory( new Config([ 'dependencies' => [ 'services' => [], 'invokables' => [], 'factories' => [], 'aliases' => [], 'delegators' => [], ], // ... other configuration ]) );

The dependencies sub associative array can contain the following keys:

  • services: an associative array that maps a key to a specific service instance.
  • invokables: an associative array that map a key to a constructor-less service; i.e., for services that do not require arguments to the constructor. The key and service name may be the same; if they are not, the name is treated as an alias.
  • factories: an associative array that maps a service name to a factory class name, or any callable. Factory classes must be instantiable without arguments, and callable once instantiated (i.e., implement the __invoke() method).
  • aliases: an associative array that maps an alias to a service name (or another alias).
  • delegators: an associative array that maps service names to lists of delegator factory keys, see the Expressive delegators documentation for more details.

Please note, that the whole configuration is available in the $container on config key:

$config = $container->get('config');

Using with Expressive

Replace the contents of config/container.php with the following:

<?php use JSoumelidis\SymfonyDI\Config\Config; use JSoumelidis\SymfonyDI\Config\ContainerFactory; $config = require __DIR__ . '/config.php'; $factory = new ContainerFactory(); return $factory(new Config($config));

Pre-configuring the ContainerBuilder

One can pass an already instantiated ContainerBuilder as 2nd argument to ContainerFactory

<?php use JSoumelidis\SymfonyDI\Config\Config; use JSoumelidis\SymfonyDI\Config\ContainerFactory; $config = require __DIR__ . '/config.php'; $containerBuilder = new \Symfony\Component\DependencyInjection\ContainerBuilder(); //...Your work here... $factory = new ContainerFactory(); return $factory(new Config($config), $containerBuilder);

Dumping/Caching the Container

Symfony DI Container's dumping functionality is now supported. See the following example for using with expressive. For more information about compiling, dumping and caching Symfony DIC's configuration visit symfony documentation here

This functionality requires symfony/config package

<?php use JSoumelidis\SymfonyDI\Config\Config; use JSoumelidis\SymfonyDI\Config\ContainerFactory; use Symfony\Component\DependencyInjection\Dumper\PhpDumper; $factory = new ContainerFactory(); $config = require __DIR__ . '/config.php'; $cachedContainerFile = 'someFileToDumpContainerConfiguration.php'; $containerConfig = new Config($config, true); //set 2nd argument to true while //instantiating Config to register //services as synthetic if (file_exists($cachedContainerFile)) { //load cached container require_once($cachedContainerFile); //boot the cached container $container = new ProjectServiceContainer(); //Default class for Symfony DI //re-set synthetic services, this is mandatory $containerConfig->setSyntheticServices($container); return $container; } $container = $factory($containerConfig); //... other user configuration here $container->compile(); file_put_contents($cachedContainerFile, (new PhpDumper($container))->dump()); return $container;

统计信息

  • 总下载量: 116.1k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 8
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 3
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固