gidato/laravel-container-extensions
Composer 安装命令:
composer require gidato/laravel-container-extensions
包简介
Extensions for Laravels Container and App
README 文档
README
composer require gidato/laravel-container-extensions
You then need to find the following line in \bootstrap\app.php
$app = new Illuminate\Foundation\Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);
And change it as follows:
$app = new Gidato\Container\Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);
Nested Containers
A separate container can be created and used within a container, effectively namespacing the bound elements.
This allows specific parts of the application to be directly associated with a specific container.
To access sub containers, you can use app()->container("name-of-container"), and then bind things to this level.
Directly bound classes can then be retrieved (if you want them all), using $container->getAllBound(). This will give only specifically bound classes/objects, and will not deliver any that could be dynamically created.
If you want to exclude other nested containers from this call, use $container->getAllBound($recursive = true)
Binding using Factory Creation
Instead of creating a closure in the Provider, this allows the creation to be done within a factory class, which can then live with the class, making it more accessible.
The factory must implement Gidato\Container\Contract\FactoryContract which requires that the class be invokable. The method should be defined to match the following:
public function __invoke(\Psr\Container\ContainerInterface $container, string $requestedName, array $parameters = []);
And then, in the provider, class can be bound using:
$app->singletonFromFactory($abstract, $factoryClass)
$app->bindFromFactory($abstract, $factoryClass, $shared = false)
License
This software is open-sourced software licensed under the MIT license.
gidato/laravel-container-extensions 适用场景与选型建议
gidato/laravel-container-extensions 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 01 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「factory」 「laravel」 「containers」 「gidato」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gidato/laravel-container-extensions 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gidato/laravel-container-extensions 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gidato/laravel-container-extensions 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Containers Plugin for CakePHP
Testing object factory for PHP
Testing object factory for PHP
Chirripo is an open source docker containers setup to be added easily to any existing php project.
Laravel 5 Model Factory Generator.
A model factory package for Laravel 4 with expressive API for creating custom tailored dummy objects
统计信息
- 总下载量: 16
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-30