xenokore / component-loader
Component loader for the Xeno framework
1.0.0
2021-05-12 09:03 UTC
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-17 21:48:08 UTC
README
A library that helps with loading Xeno compatible components. Libraries that are compatible will be able to easily expose autowire definitions for a DI container, expose Twig templates, etc...
Installation
composer require xenokore/component-loader
Usage
$component_loader = new Xenokore\ComponentLoader\Loader('/vendor'); // When using PHP-DI $builder = new DI\ContainerBuilder(); $builder->useAnnotations(true); $builder->useAutowiring(true); $builder->addDefinitions( $component_loader->getContainerDefinitions() );
Creating a component
- Create a
/component
directory in the root of your component library - Add your DI container definitions in
/component/container.php
- Require your component using composer in a project or framework that uses the Xeno Component Loader
- Your definitions will be automatically added to the main DI container
Status
Currently only container definitions are supported. Twig templates still have to be added. And there will most likely be more features than this.