Go to file
Daniel Seifert 943adfaa5e
improve code
2024-01-31 22:09:36 +01:00
autoload improve code 2024-01-31 22:09:36 +01:00
tests improve code 2024-01-31 22:09:36 +01:00
.php-cs-fixer.php fix code style 2023-11-23 15:05:40 +01:00
CHANGELOG.md adjust version informations 2023-01-11 23:15:34 +01:00
LICENSE.md adjust version informations 2023-01-11 23:15:34 +01:00
README.en.md adjust version informations 2023-01-11 23:15:34 +01:00
README.md adjust version informations 2023-01-11 23:15:34 +01:00
composer.json improve code 2024-01-31 22:09:36 +01:00
d3DicHandler.php improve code 2024-01-31 22:09:36 +01:00
d3DicHandlerInterface.php improve code style 2024-01-31 21:17:51 +01:00
d3DicUtilities.php improve code 2024-01-31 22:09:36 +01:00
definitionFileContainer.php improve code 2024-01-31 22:09:36 +01:00
phpstan.neon improve code 2024-01-31 21:56:19 +01:00
rector.php improve code 2024-01-31 22:09:36 +01:00

README.en.md

deutsche Version english version

Dependency Injection Container handler for OXID eShop

Enables the simple use of a class container outside of the OXID DI Services.

Install

This package requires an Composer installed OXID eShop as defined in composer.json.

Open a command line interface and navigate to the shop root directory (parent of source and vendor). Execute the following command. Adapt the paths to your environment.

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 for further informations.

Contributing

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue. Don't forget to give the project a star! Thanks again!

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request

Licence

(status: 2023-01-03)

Distributed under the MIT license.

Copyright (c) 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 in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For full copyright and licensing information, please see the LICENSE file distributed with this source code.