adjust version informations

Cette révision appartient à :
Daniel Seifert 2023-01-11 23:15:34 +01:00
Parent eb64526c48
révision 9ebd3ee431
Signé par: DanielS
ID de la clé GPG: 6A513E13AEE66170
5 fichiers modifiés avec 43 ajouts et 2 suppressions

13
CHANGELOG.md Fichier normal
Voir le fichier

@ -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

Voir le fichier

@ -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

Voir le fichier

@ -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.

Voir le fichier

@ -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.

Voir le fichier

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