mirror of
https://github.com/doctrine/instantiator.git
synced 2026-03-23 22:42:06 +01:00
2.1.x
Bumps [doctrine/.github/.github/workflows/coding-standards.yml](https://github.com/doctrine/.github) from 13.1.0 to 14.0.0. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](https://github.com/doctrine/.github/compare/13.1.0...14.0.0) --- updated-dependencies: - dependency-name: doctrine/.github/.github/workflows/coding-standards.yml dependency-version: 14.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Doctrine Instantiator
This library provides a way of avoiding usage of constructors when instantiating PHP classes.
Installation
The suggested installation method is via composer:
composer require doctrine/instantiator
Usage
The instantiator is able to create new instances of any class without using the constructor or any API of the class itself:
$instantiator = new \Doctrine\Instantiator\Instantiator();
$instance = $instantiator->instantiate(\My\ClassName\Here::class);
Contributing
Please read the CONTRIBUTING.md contents if you wish to help out!
Credits
This library was migrated from ocramius/instantiator, which has been donated to the doctrine organization, and which is now deprecated in favour of this package.
Languages
PHP
100%

