Go to file
Daniel Seifert 210920cfaa
change Monolog logger to a configurable instance
2022-08-02 23:20:52 +02:00
Application change Monolog logger to a configurable instance 2022-08-02 23:20:52 +02:00
Modules change Monolog logger to a configurable instance 2022-08-02 23:20:52 +02:00
.php-cs-fixer.php Initial commit 2022-07-30 23:39:46 +02:00
CHANGELOG.md Initial commit 2022-07-30 23:39:46 +02:00
IntelliSenseHelper.php Initial commit 2022-07-30 23:39:46 +02:00
LICENSE.md Initial commit 2022-07-30 23:39:46 +02:00
README.en.md Merge remote-tracking branch 'remotes/origin/dev_profiling' into main 2022-08-02 08:38:16 +02:00
README.md Merge remote-tracking branch 'remotes/origin/dev_profiling' into main 2022-08-02 08:38:16 +02:00
composer.json add patch instructions to create overridable functions by automatic 2022-08-01 22:44:05 +02:00
metadata.php overwrite profiling methods to get a more accurate profiling 2022-08-01 01:24:44 +02:00
phpstan.neon Initial commit 2022-07-30 23:39:46 +02:00
phpunit.xml Initial commit 2022-07-30 23:39:46 +02:00
services.yaml change Monolog logger to a configurable instance 2022-08-02 23:20:52 +02:00

README.en.md

deutsche Version english version

D³ Debug Bar for OXID eShop

The debug bar enables the display of relevant debug information in the shop frontend.

Table of content

Installation

This package requires an OXID eShop installed with Composer in a version defined in the composer.json.

Please enter the following section in the composer.json of your project:

  "extra": {
    "ajgl-symlinks": {
      "maximebf/debugbar": {
        "src/DebugBar/Resources": "source/out/debugbar"
      }
    },
    "enable-patching": "true",
    "patches": {
      "oxid-esales/oxideshop-ce": {
        "Add overridable functions for advanced profiling in Debug Bar": "https://git.d3data.de/D3Public/DebugBar/raw/branch/patches/overridablefunctions.patch"
      }
    }
  }

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

php composer require d3/modulename:^2.0

If necessary, please confirm that you allow composer-symlinker to execute code.

Activate the module in Shopadmin under "Extensions -> Modules".

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: 2022-07-30)

Distributed under the GPLv3 license.

Copyright (c) D3 Data Development (Inh. Thomas Dartsch)

This software is distributed under the GNU GENERAL PUBLIC LICENSE version 3.

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

Further licences and terms of use

Smarty collector

(https://github.com/Junker/php-debugbar-smarty/blob/master/LICENSE - status 2022-07-31)

The MIT License (MIT)

Copyright (c) 2016 Dmitry Kosenkov

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.