Download the PHP package hostnet/entity-tracker-bundle without Composer
On this page you can find all versions of the php package hostnet/entity-tracker-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hostnet/entity-tracker-bundle
More information about hostnet/entity-tracker-bundle
Files in hostnet/entity-tracker-bundle
Package entity-tracker-bundle
Short Description Wraps around the hostnet/entity-tracker-component and allows configuration of several listener components
License MIT
Informations about the package entity-tracker-bundle
README
- What is the Entity Tracker Bundle?
- Requirements
- Installation
Documentation
- How does it work?
- Setup
- Register The Bundle in your AppKernel
- Configuration Overview
- Blamable Component
- Mutation Component
- Revision Component
What is the Entity Tracker Bundle?
The Entity Tracker Bundle is a bundle used to configure the following components:
- hostnet/entity-tracker-component
- hostnet/entity-blamable-component
- hostnet/entity-mutation-component
- hostnet/entity-revision-component
It will let you configure those components using the config.yaml
Note: Only the Entity Tracker Component is mandatory, as this bundle configures the services. The other components only need to be configured if they are present.
Requirements
The tracker bundle requires at least php 7.3 and runs on Doctrine2 and Symfony2. For specific requirements, please check composer.json
Installation
Installing is pretty easy, this package is available on packagist. You can register the package locked to a major as we follow Semantic Versioning 2.0.0.
Example
Note: You can use dev-master if you want the latest changes, but this is not recommended for production code!
Documentation
How does it work?
It features a config builder that allows you to config only what you need. If you have the "Blamable" annotation available, it will throw an exception during container compilation if it's not configured. The same goes for all other supported components. If you happen to configure it while it isn't used, it will also let you know.
Setup
Register The Bundle in your AppKernel
This bundle is not dependent on others based on compiler passes or configuration.
Configuration Overview
By default, nothing is required. Only when you enable a certain configuration option, it will yell you what's missing.
If you are using entities in your bundle, your bundle should have a dependency on the component using the specific annotation you use. If your bundle is in your application, your application should have a dependency on the component. If you use the hostnet/entity-plugin-lib, you will have separate packages for entities. You should put your dependencies on that package.
Note: Based on what is available, the configuration requirements are determined. If one of the bundles or Entity packages has a dependency on one of the components, this bundle will also configure it for you.
The template is as following:
Configuring the Blamable Component
The Blamable Component has 1 required option, the provider. The provider is the class that implements the BlamableProviderInterface as explained in the documation. The argument passed to that option is the name of the service you are using for it. There are two ways you can go about using these providers. The first way is to make use of the default blamamable provider that is shipped with this bundle. This can be done using the following method:
config.yaml
It is also possible to create your own BlamamableProvider by implementing the BlamableProviderInterface. If you choose to do this the following method can be used to make use of your custom BlamableProvider.
Note: The following example is based on the AcmeBlamableProvider from the link above
services.yaml
config.yaml
Configuring the Mutation Component
The Mutation Component has no required options. All you have to do to enable it, is add "mutation: ~" to the config.
config.yaml
Configuring the Revision Component
The Revision Component has 1 required option, the factory. The factory is the class that implements the RevisionFactoryInterface as explained in the documation. The argument passed to that option is the name of the service you are using for it.
Note: The following example is based on the AcmeRevisionFactory from the link above
services.yaml
config.yaml
All versions of entity-tracker-bundle with dependencies
hostnet/entity-tracker-component Version ^2.0.0
psr/log Version ^1.1.0
symfony/config Version ^5.4||^6.0
symfony/dependency-injection Version ^5.4||^6.0
symfony/http-kernel Version ^5.4||^6.0
symfony/yaml Version ^5.4||^6.0