Download the PHP package yiisoft/factory without Composer
On this page you can find all versions of the php package yiisoft/factory. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download yiisoft/factory
More information about yiisoft/factory
Files in yiisoft/factory
Package factory
Short Description Yii Factory
License BSD-3-Clause
Homepage https://www.yiiframework.com/
Informations about the package factory
Yii Factory
This package provides abstract object factory allowing to create objects by given definition with dependencies resolved by a PSR-11 container.
Requirements
- PHP 8.0 or higher.
Installation
The package could be installed with Composer:
General usage
The factory is useful if you need to create objects using definition syntax and/or want to configure defaults for objects created.
In the code above we define factory config specifying that when we need EngineInterface
, an instance of EngineMarkOne
will be created with power
constructor argument equals to 42. We also specify that all the dependencies requested by
the object created should be resolved by PSR11DependencyInjectionContainer
.
First call to create()
uses default configuration of EngineInterface
as is. Second call specifies custom
configuration for power
constructor argument. In this case, configuration specified is merged with default
configuration overriding its keys when the key name is the same.
Tuning for production
By default, the factory validates definitions right when they are set. In production environment, it makes sense to
turn it off by passing false
as a third constructor argument:
Documentation
- Internals
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii Factory is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.
Support the project
Follow updates
All versions of factory with dependencies
psr/container Version ^1.0|^2.0
yiisoft/definitions Version ^1.0|^2.0|^3.0.1