https://github.com/doctrine/instantiator
https://github.com/doctrine/instantiator
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/doctrine/instantiator
- Owner: doctrine
- License: mit
- Created: 2014-08-07T15:43:55.000Z (almost 11 years ago)
- Default Branch: 2.0.x
- Last Pushed: 2025-04-24T06:55:45.000Z (about 2 months ago)
- Last Synced: 2025-05-02T05:23:56.227Z (about 1 month ago)
- Language: PHP
- Homepage: https://www.doctrine-project.org/projects/instantiator.html
- Size: 388 KB
- Stars: 10,998
- Watchers: 23
- Forks: 63
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Doctrine Instantiator
This library provides a way of avoiding usage of constructors when instantiating PHP classes.
[](https://travis-ci.org/doctrine/instantiator)
[](https://codecov.io/gh/doctrine/instantiator/branch/master)
[](https://www.versioneye.com/package/php--doctrine--instantiator)[](https://packagist.org/packages/doctrine/instantiator)
[](https://packagist.org/packages/doctrine/instantiator)## Installation
The suggested installation method is via [composer](https://getcomposer.org/):
```sh
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:```php
$instantiator = new \Doctrine\Instantiator\Instantiator();$instance = $instantiator->instantiate(\My\ClassName\Here::class);
```## Contributing
Please read the [CONTRIBUTING.md](CONTRIBUTING.md) contents if you wish to help out!
## Credits
This library was migrated from [ocramius/instantiator](https://github.com/Ocramius/Instantiator), which
has been donated to the doctrine organization, and which is now deprecated in favour of this package.