Download the PHP package divineniiquaye/rade-di without Composer
On this page you can find all versions of the php package divineniiquaye/rade-di. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download divineniiquaye/rade-di
More information about divineniiquaye/rade-di
Files in divineniiquaye/rade-di
Package rade-di
Short Description A simple and smart dependency injection for PHP
License BSD-3-Clause
Homepage https://www.divinenii.com
Informations about the package rade-di
divineniiquaye/rade-di is a HIGH performance smart tool for performing simple to complex dependency injection in your application for PHP 7.4+ created by Divine Niiquaye referenced to Nette DI and Pimple. This library provides an advance way of resolving services for best performance to your application.
Rade DI was born after frustration using Symfony DI and Nette DI on several projects. Autowiring feature in Nette is much more simpler than that of symfony's. No doubt they all great to use, but I wanted a DI which allows me focus on writing code than configuring the DI. Initially was a simple container, but over time managed to include most essential features.
This project adheres to a code of conduct. By participating in this project and its community, you are expected to uphold this code.
π¦ Installation & Basic Usage
This project requires PHP 7.4 or higher. The recommended way to install, is via Composer. Simply run:
Creating a container is a matter of creating a Container
instance:
For registering services into container, a service must be a real valid PHP object type. Container implements both PSR-11 ContainerInterface
and ArrayAccess
, so here's an example to demonstrate:
Using Container without
ArrayAccess
Using Container with
ArrayAccess
Using the defined services is also very easy:
Container supports reuseable service instance. This is means, a registered service which is resolved, is frozen and object's id does not change throughout your application using Rade DI.
Rade DI also supports autowiring except a return type of a callable is not define or better still if you do not want autowiring at all, use the container's set method. By default, registering services with ArrayAccess
implementation are all autowired.
With the example above, each call to $container['session']
returns a new instance of the session. Also Rade has aliasing and tagging support for services. If you want to add a different name to a registered service, use alias
method.
For tagging, perhaps you are building a report aggregator that receives an array of many different Report
interface implementations.
Once the services have been tagged, you may easily resolve them all via the tagged
method:
Since PHP 8 release, container supports injecting services to public class properties and public class methods using an attribute named #[Inject]
. If a value is not provided for the attribute it uses type declaration on either public class properties or public class methods typed parameter(s).
For performance reasons, this feature is locked to classes implementing Rade\DI\Injector\InjectableInterface
, and can be resolved using the container's call method or container resolver's resolveClass method.
Eg: Dependency Service1
will be passed by calling the injectService1
method, dependency Service2
will be assigned to the $service2
property:
Before the PHP's 8 #[Inject] attribute, rade di supported autowiring using phpdoc type and still support's with plans to remove after PHP 8.2 release. The #[Inject] attribute is an advanced autowiring, as long as the value is resolvable by the container, it doesn't mind.
Rade Di has extensions support, which allows the container to be extensible and reuseable. With Rade DI, your project do not need so to depend on PSR-11 container so much. Using service providers in your project, saves you alot.
Then, register the provider on a Container:
Service providers support Symfony's config component for writing configuration for service definitions found in a provider. Implement the service provider class to Symfony\Component\Config\Definition\ConfigurationInterface
.
Writing configurations for a service provider by default, the service provider's class name, becomes the key pointing to the require config data. Want to use a custom key name, set add a static getId method returning your custom key name.
Using Symfony's config component +
Rade\DI\ContainerBuilder
class is highly recommended.
Also the Rade\DI\ServiceLocator
class is intended of setting predefined services while instantiating them only when actually needed.
For service locators, Rade uses symfony's service contracts.
It also allows you to make your services available under different naming. For instance, you may want to use an object that expects an instance of EventDispatcherInterface
to be available under the name event_dispatcher
while your event dispatcher has been registered under the name dispatcher
:
π Documentation
For in-depth documentation before using this library. Full documentation on advanced usage, configuration, and customization can be found at docs.divinenii.com.
β« Upgrading
Information on how to upgrade to newer versions of this library can be found in the UPGRADE.
π·οΈ Changelog
SemVer is followed closely. Minor and patch releases should not introduce breaking changes to the codebase; See CHANGELOG for more information on what has changed recently.
Any classes or methods marked @internal
are not intended for use outside of this library and are subject to breaking changes at any time, so please avoid using them.
π οΈ Maintenance & Support
(This policy may change in the future and exceptions may be made on a case-by-case basis.)
- A new patch version released (e.g.
1.0.10
,1.1.6
) comes out roughly every month. It only contains bug fixes, so you can safely upgrade your applications. - A new minor version released (e.g.
1.1
,1.2
) comes out every six months: one in June and one in December. It contains bug fixes and new features, but it doesnβt include any breaking change, so you can safely upgrade your applications; - A new major version released (e.g.
1.0
,2.0
,3.0
) comes out every two years. It can contain breaking changes, so you may need to do some changes in your applications before upgrading.
When a major version is released, the number of minor versions is limited to five per branch (X.0, X.1, X.2, X.3 and X.4). The last minor version of a branch (e.g. 1.4, 2.4) is considered a long-term support (LTS) version with lasts for more that 2 years and the other ones cam last up to 8 months:
Get a professional support from Biurad Lap after the active maintenance of a released version has ended.
π§ͺ Testing
This will tests divineniiquaye/rade-di will run against PHP 7.4 version or higher.
ποΈ Governance
This project is primarily maintained by Divine Niiquaye Ibok. Contributions are welcome π·ββοΈ! To contribute, please familiarize yourself with our CONTRIBUTING guidelines.
To report a security vulnerability, please use the Biurad Security. We will coordinate the fix and eventually commit the solution in this project.
π Sponsors
Are you interested in sponsoring development of this project? Reach out and support us on Patreon or see https://biurad.com/sponsor for a list of ways to contribute.
π₯ Credits & Acknowledgements
π License
The divineniiquaye/rade-di library is copyright Β© Divine Niiquaye Ibok and licensed for use under the .
All versions of rade-di with dependencies
nette/utils Version ^3.2
psr/container Version ^1.1|^2.0
symfony/service-contracts Version ^1.1.6|^2