Download the PHP package konradmichalik/typo3-dump-server without Composer

On this page you can find all versions of the php package konradmichalik/typo3-dump-server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package typo3-dump-server

![Extension icon](Resources/Public/Icons/Extension.png) # TYPO3 extension `typo3_dump_server` [![Latest Stable Version](https://typo3-badges.dev/badge/typo3_dump_server/version/shields.svg)](https://extensions.typo3.org/extension/typo3_dump_server) ![TYPO3](https://img.shields.io/badge/TYPO3-11.5%20%7C%2012.4%20%7C%2013.4%20%7C%2014.0-orange.svg) [![Coverage](https://coveralls.io/repos/github/konradmichalik/typo3-dump-server/badge.svg?branch=main)](https://coveralls.io/github/konradmichalik/typo3-dump-server) [![CGL](https://img.shields.io/github/actions/workflow/status/konradmichalik/typo3-dump-server/cgl.yml?label=cgl&logo=github)](https://github.com/konradmichalik/typo3-dump-server/actions/workflows/cgl.yml) [![Tests](https://img.shields.io/github/actions/workflow/status/konradmichalik/typo3-dump-server/tests.yml?label=tests&logo=github)](https://github.com/konradmichalik/typo3-dump-server/actions/workflows/tests.yml) [![License](https://poser.pugx.org/konradmichalik/typo3-dump-server/license)](LICENSE.md)

This extension brings the Symfony Var Dump Server to TYPO3.

[!NOTE] This package is an alternative approach to the default TYPO3 debugging methods or the universal use of xdebug.

The dump server gathers all dump call outputs, e.g. for preventing interference with HTTP or API responses.

🔥 Installation

Requirements

Composer

Packagist Packagist Downloads

TER

TER version TER downloads

Download the zip file from TYPO3 extension repository (TER).

📊 Usage

Console command

Start the dump server with the following command:

Use the format option to change the output format to html:

[!NOTE] The dump server will be available at tcp://127.0.0.1:9912 by default. Use the environment variable TYPO3_DUMP_SERVER_HOST to change the host.

[!WARNING] The dump server protocol is unauthenticated and unencrypted, and dumps often contain sensitive data (credentials, session data, personal data). Keep the server bound to a loopback address (127.0.0.1) — never expose it via 0.0.0.0 or a public interface. Install the extension as a dev dependency (composer require --dev) so it is not deployed to production systems.

IDE Deep Links

Click on source file paths in the dump output to open them directly in your IDE. Configure the IDE via environment variable:

Supported IDEs: phpstorm, vscode, sublime, textmate, atom

You can also use a custom URL pattern with %file% and %line% placeholders:

TYPO3 Context

The dump server automatically displays the TYPO3 version and application context (e.g. Development, Production) alongside each dump output.

Dump

Use the dump function in your code:

ViewHelper

Use the symfony:dump ViewHelper in your Fluid templates:

Extension settings

By default, a dump() call will add something like the following output to the frontend if the dump server isn't running:

You can suppress this output with the suppressDump setting in the extension configuration. If this setting is enabled, the output will be suppressed and the dump will only be sent to the dump server.

You can find the extension settings in the TYPO3 backend under Admin Tools > Settings > Extension Configuration > typo3_dump_server.

Programmatic Handling

You can listen to dump events programmatically using TYPO3's PSR-14 event system:

[!NOTE] Register your event listener via the AsEventListener attribute (TYPO3 >= 13) or in your service configuration (see docs).

🧑‍💻 Contributing

Please have a look at CONTRIBUTING.md.

💛 Acknowledgements

This project is highly inspired by the laravel-dump-server & the symfony var-dumper component itself.

⭐ License

This project is licensed under GNU General Public License 2.0 (or later).


All versions of typo3-dump-server with dependencies

PHP Build Version
Package Version
Requires php Version ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0
psr/event-dispatcher Version ^1.0
symfony/console Version ^5.4 || ^6.4 || ^7.0 || ^8.0
symfony/var-dumper Version ^5.0 || ^6.0 || ^7.0 || ^8.0
typo3/cms-core Version ^11.5 || ^12.4 || ^13.4 || ^14.0
typo3fluid/fluid Version ^2.15 || ^4.2 || ^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package konradmichalik/typo3-dump-server contains the following files

Loading the files please wait ...