adjust version informations

This commit is contained in:
Daniel Seifert 2023-01-11 23:15:34 +01:00
parent eb64526c48
commit 9ebd3ee431
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170
5 changed files with 43 additions and 2 deletions

13
CHANGELOG.md Normal file
View File

@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased](https://git.d3data.de/D3Public/DIContainer/compare/1.0.0.0...rel_1.x)
## [1.0.0.0](https://git.d3data.de/D3Public/DIContainer/releases/tag/1.0.0.0) - 2023-01-10
### Added
- add definition registry
- add container handler
- can get uncompiled container

View File

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2021 D3 Data Development (Inh. Thomas Dartsch)
Copyright (c) 2023 D3 Data Development (Inh. Thomas Dartsch)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -15,6 +15,20 @@ Open a command line interface and navigate to the shop root directory (parent of
php composer require d3/oxid-dic-handler:^1.0
```
## Usage
To add your own definitions to the container, extend the class `D3\DIContainerHandler\definitionFileContainer` with the following call:
```
public function __construct()
{
parent::__construct();
$this->addYamlDefinitions('my/plugin/Config/services.yaml');
}
```
Then empty the TMP folder.
## Changelog
See [CHANGELOG](CHANGELOG.md) for further informations.

View File

@ -15,6 +15,20 @@ Dieses Paket erfordert einen mit Composer installierten OXID eShop in einer in d
php composer require d3/oxid-dic-handler:^1.0
```
## Verwendung
Um eigene Defintionen dem Container hinzuzufügen, erweitern Sie die Klasse `D3\DIContainerHandler\definitionFileContainer`um folgenden Aufruf:
```
public function __construct()
{
parent::__construct();
$this->addYamlDefinitions('my/plugin/Config/services.yaml');
}
```
Leeren Sie anschließend den TMP-Ordner.
## Changelog
Siehe [CHANGELOG](CHANGELOG.md) für weitere Informationen.

View File

@ -6,7 +6,7 @@
"oxid",
"eShop",
"services",
"bridges",
"dependency injection",
"d3"
],
"authors": [