Download the PHP package frosh/view-snapshots without Composer
On this page you can find all versions of the php package frosh/view-snapshots. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package view-snapshots
View Snapshots
View Snapshots is a plugin for shopware that allows you to record/log requests continiously. It will record snapshots of variables passed to the view and will persist them in serialized form to the database. Also persisted is the template path, session ID and steps taken since the start of recording.
Goal
By having a snapshot of the template, including it's data, you can review most requests with the more or less exact same outcome as the original request. Therefore you can customize your templates, css, JavaScript and check your changes against a previously recorded situation, e.g. a variety of different articles within the basket or the order confirmation.
Features
- Start/stop recording sessions at any time
- Backend component to view recorded sessions
- View recorded snapshots
- Step forward/backward between snapshots within a recorded session
- Compare recordings and their steps
New with v. 1.1.0
- View complete diffs of raw data by selecting two snapshots in the backend app
Note: The library used to generate diffs is FineDiff and it was integrated into this project as it is not available as composer package (yet)
Usage
After installing the plugin through the plugin manager, you can find the accompanying backend app under the Configuration menu.
The backend app will list all recorded sessions.
To start a recording session, request a frontend page and use the JavaScript console to issue commands:
Start recording
Stop recording
When viewing a recorded session
View next step in recorded session
View previous step in recorded session
Installation
- Clone this repository into a folder FroshViewSnapshots within the custom/plugins directory of the Shopware installation.
- Install the plugin through the Plugin-Manager within the Shopware backend.
Install with composer
- Change to your root installation of shopware
- Run command
composer require frosh/view-snapshots
and install and activate plugin with Plugin Manager
Requirements
- Shopware 5.3.4 or higher
- PHP 5.6 or higher
Dependencies
- Depends on finediff by Raymond Hill