Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doctrine/instantiator
https://github.com/doctrine/instantiator
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/doctrine/instantiator
- Owner: doctrine
- License: mit
- Created: 2014-08-07T15:43:55.000Z (over 10 years ago)
- Default Branch: 2.0.x
- Last Pushed: 2023-12-09T14:27:35.000Z (11 months ago)
- Last Synced: 2024-04-14T01:02:20.624Z (7 months ago)
- Language: PHP
- Homepage: https://www.doctrine-project.org/projects/instantiator.html
- Size: 341 KB
- Stars: 10,910
- Watchers: 25
- Forks: 59
- 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.
[![Build Status](https://travis-ci.org/doctrine/instantiator.svg?branch=master)](https://travis-ci.org/doctrine/instantiator)
[![Code Coverage](https://codecov.io/gh/doctrine/instantiator/branch/master/graph/badge.svg)](https://codecov.io/gh/doctrine/instantiator/branch/master)
[![Dependency Status](https://www.versioneye.com/package/php--doctrine--instantiator/badge.svg)](https://www.versioneye.com/package/php--doctrine--instantiator)[![Latest Stable Version](https://poser.pugx.org/doctrine/instantiator/v/stable.png)](https://packagist.org/packages/doctrine/instantiator)
[![Latest Unstable Version](https://poser.pugx.org/doctrine/instantiator/v/unstable.png)](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.