Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cspray/annotated-container
Dependency Injection framework to configure a PSR-11 Container with Attributes!
https://github.com/cspray/annotated-container
annotated-container dependency-injection php php8 psr-11
Last synced: about 1 month ago
JSON representation
Dependency Injection framework to configure a PSR-11 Container with Attributes!
- Host: GitHub
- URL: https://github.com/cspray/annotated-container
- Owner: cspray
- License: mit
- Created: 2021-04-04T13:39:32.000Z (over 3 years ago)
- Default Branch: release-2.x
- Last Pushed: 2024-11-10T02:01:52.000Z (about 1 month ago)
- Last Synced: 2024-11-10T02:23:58.098Z (about 1 month ago)
- Topics: annotated-container, dependency-injection, php, php8, psr-11
- Language: PHP
- Homepage:
- Size: 1.76 MB
- Stars: 39
- Watchers: 6
- Forks: 1
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# AnnotatedContainer
[![Unit Tests](https://github.com/cspray/annotated-container/actions/workflows/php.yml/badge.svg)](https://github.com/cspray/annotated-container/actions/workflows/php.yml)
A Dependency Injection framework for creating an autowired, feature-rich, [PSR-11](https://www.php-fig.org/psr/psr-11/) compatible Container using PHP 8 Attributes!
- Designate an interface as a Service and easily configure which concrete implementations to use
- Delegate service construction to a factory
- Inject scalar values, environment variables, and other services into your constructors and setters
- Automatically invoke methods after the service is constructed
- Use Profiles to easily use different services in different runtimes
- Create type-safe, highly flexible configuration objects
- Easily include third-party services that cannot be easily annotated
- Bring Your Own Container!## Quick Start
This quick start is intended to get you familiar with Annotated Container's core functionality and get a working Container created. First, a simple example showing how an interface can be aliased to a concrete Service. After that we'll show you how to get a Container to create the Service.
### Code Example
```php
The CLI tool offers extensive documentation detailing how to run commands and what options are available. If you're ever looking for more info run: `./vendor/bin/annotated-container help`The first step is to create the configuration. By default, the tooling will look at your `composer.json` to determine what directories to scan and create a directory that the ContainerDefinition can be cached in. Run the following command to complete this step.
```
./vendor/bin/annotated-container init
```The configuration file will be created in the root of your project named "annotated-container.xml". The cache directory will also be created in the root of your project named ".annotated-container-cache". Check out the command's help documentation for available options, including how to customize these values.
Be sure to review the generated configuration! A "normal" Composer setup might result in a configuration that looks like the following. If there are any directories that should be scanned but aren't listed in `` be sure to include them. Conversely, if there are directories included that _shouldn't_ be scanned be sure to remove them.
```xml
src
tests
.annotated-container-cache```
Now, bootstrap your Container in your app.
```php
bootstrapContainer($profiles);$storage = $container->get(BlobStorage::class); // instanceof FilesystemStorage
```## Installation
```
composer require cspray/annotated-container
```### Choose a Backing Container
AnnotatedContainer does not provide any of the actual Container functionality. We provide Attributes and definition objects that can determine how actual implementations are intended to be setup. AnnotatedContainer currently supports the following backing Containers:
#### [rdlowrey/auryn](https://github.com/rdlowrey/auryn)
```
composer require rdlowrey/auryn
```#### [php-di/php-di](https://github.com/php-di/php-di)
```
composer require php-di/php-di
```#### [illuminate/container](https://github.com/illuminate/container)
```
composer require illuminate/container
```## Documentation
This library is thoroughly documented in-repo under the `/docs` directory. The documentation is split into three parts; Tutorials, How Tos, and References.
**Tutorials** are where you'll want to start. It'll expand on the examples in the "Quick Start" and teach you how to do most of the things you'll want to do with the library. This documentation tends to split the difference between the amount of code and the amount of explanation.
**How Tos** are where you'll go to get step-by-step guides on how to achieve specific functionality. These documents tend to be more code and less explanation. We assume you've gotten an understanding of the library and have questions on how to do something beyond the "normal" use cases.
**References** are where you can get into the real internal, technical workings of the library. List of APIs and more technically-explicit documentation can be found here. References may be a lot of code, a lot of explanation, or a split between the two depending on the context.
## Roadmap
The Roadmap can be found in the [annotated-container Project page](https://github.com/users/cspray/projects/1/views/1).
## External Resources
### Notable Libraries Using Annotated Container
- [Annotated Console](https://github.com/cspray/annotated-console)
- [Labrador Async Event](https://github.com/labrador-kennel/async-event) (3.0.0-beta2+)### Blog Posts
- [Introducing Annotated Container - Part 1](https://www.cspray.io/blog/introducing-annotated-container-part-1/)
- [Introducing Annotated Container - Part 2](https://www.cspray.io/blog/introducing-annotated-container-part-2/)
- [Introducing Annotated Container - Part 3](https://www.cspray.io/blog/introducing-annotated-container-part-3/)
- [Annotated Container, Why Attributes?](https://www.cspray.io/blog/annotated-container-why-attributes/)
- [Autowiring Annotated Container](https://www.cspray.io/blog/autowiring-and-annotated-container/)### Demos
- [cspray/annotated-container-microframework](https://github.com/cspray/annotated-container-microframework)