forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
65 lines
2.8 KiB
Markdown
65 lines
2.8 KiB
Markdown
# Container (Dependency Injection)
|
|
|
|
[](https://twitter.com/philipobenito)
|
|
[](https://github.com/thephpleague/container/releases)
|
|
[](LICENSE.md)
|
|
[](https://travis-ci.org/thephpleague/container)
|
|
[](https://scrutinizer-ci.com/g/thephpleague/container/code-structure)
|
|
[](https://scrutinizer-ci.com/g/thephpleague/container)
|
|
[](https://packagist.org/packages/league/container)
|
|
|
|
This package is compliant with [PSR-1], [PSR-2], [PSR-12], [PSR-4] and [PSR-11]. If you notice compliance oversights, please send a patch via pull request.
|
|
|
|
[PSR-1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md
|
|
[PSR-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md
|
|
[PSR-12]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-12-extended-coding-style-guide.md
|
|
[PSR-4]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md
|
|
[PSR-11]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-11-container.md
|
|
|
|
## Install
|
|
|
|
Via Composer
|
|
|
|
``` bash
|
|
$ composer require league/container
|
|
```
|
|
|
|
## Requirements
|
|
|
|
The following versions of PHP are supported by this version.
|
|
|
|
* PHP 7.2
|
|
* PHP 7.3
|
|
* PHP 7.4
|
|
|
|
## Documentation
|
|
|
|
Container has [full documentation](http://container.thephpleague.com), powered by [Jekyll](http://jekyllrb.com/).
|
|
|
|
Contribute to this documentation in the [docs/](https://github.com/thephpleague/container/tree/master/docs) sub-directory.
|
|
|
|
## Testing
|
|
|
|
Testing includes PHPUnit and PHPStan (Level 7).
|
|
``` bash
|
|
$ composer test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
Please see [CONTRIBUTING](https://github.com/thephpleague/container/blob/master/CONTRIBUTING.md) for details.
|
|
|
|
## Security
|
|
|
|
If you discover any security related issues, please email philipobenito@gmail.com instead of using the issue tracker.
|
|
|
|
## Credits
|
|
|
|
- [Phil Bennett](https://github.com/philipobenito)
|
|
- [All Contributors](https://github.com/thephpleague/container/contributors)
|
|
- `Orno\Di` contributors
|
|
|
|
## License
|
|
|
|
The MIT License (MIT). Please see [License File](https://github.com/thephpleague/container/blob/master/LICENSE.md) for more information.
|