Download the PHP package wy/neos-abtesting without Composer

On this page you can find all versions of the php package wy/neos-abtesting. 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 neos-abtesting

wysiwyg* - Neos A/B Testing

Neos Package Neos Project PHP 7.1 and above

This package provides a simple to use backend module and frontend container to run A/B tests in Neos.

Installation

Run these commands to install the package and update the database schema.

Usage

This package offers a node container for displaying two different nodes for two different decisions (A or B).

You can add the A/B testing container to your constraints: Wysiwyg.ABTesting:ABTestingContainer

The container has three contentCollections:

By default these collections accept all content nodes. This can be changed by overriding the respective node configuration in your own NodeTypes.yaml file. An editor has to put one or more nodes in each content collection.

IMPORTANT
Both versions will always be rendered in the Neos backend. Per default version A will be displayed in the frontend if no feature has been configured and selected.

You can find an option group "A / B Testing" in each ABTestingContainer. This group provides a dropdown menu to choose which feature will be used for the container.

Preview Different Versions

Sometimes it is necessary to view a different version of the feature.
For viewing a different version add the "forceABVersion" GET-parameter into the url and assign the desired version as the value.

Example:
Show Version A https://example.com/greatFeature.html?forceABVersion=a Show Version B https://example.com/greatFeature.html?forceABVersion=b Show Version C https://example.com/greatFeature.html?forceABVersion=c

This parameter will not override the cookie value.

Backend-Module Usage

You will find a new "A/B Testing" menu item in the main menu of the Neos backend. The module "Features" will offer all necessary functions to manage A/B testing features. In the A/B testing dashboard you will find the following options:

Feature List

Settings

This package uses default values for creating a cookie.
There are several settings which can be modified for your own implementation.

Per default the cookie has a lifetime of 2 years. Please consider that strtotime() is used to evaluate the lifetime setting's value if you need to adjust it.

Regarding Privacy (i.e. GDPR)

Please note that all A/B testing decisions will be saved in a cookie that by default is named "WYSIWYG_AB_TESTING" and has a lifetime of 2 years. This cookie will be created whenever a user opens the webpage for the first time.
It contains a raw JSON string which includes all names of the features and their decision (a or b).
Whenever a user enters the page and already has the cookie, it will be made sure that all active features are saved with a decision. If there are new features they will be added to the cookie and a new JSON string will be saved with all decisions.

Contributing

Pull requests are welcome. For major changes please open an issue first to discuss what you would like to change.

Planned Features

We want to enhance the A/B testing with more solid features.

Authors

Sven Wütherich
Alexander Schulte
Eva-Maria Müller
Marvin Kuhn

License

This package is released under the MIT License (MIT). Please see License File for more information.


All versions of neos-abtesting with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
neos/neos Version ^8.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 wy/neos-abtesting contains the following files

Loading the files please wait ....