@@ -18,6 +18,7 @@ This plugin integrates Rollbar into your WordPress installation.
1818#### Table of Contents
1919
20201 . [ Installation] ( #installation )
21+ 1 . [ Requirements] ( #requirements )
2122 1 . [ Through WordPress Plugin directory] ( #through-wordpress-plugin-directory )
2223 2 . [ Through Packagist] ( #through-packagist-recommended-new )
2324 3 . [ Through WPackagist] ( #through-wpackagist )
@@ -36,6 +37,13 @@ This plugin integrates Rollbar into your WordPress installation.
3637
3738## Installation
3839
40+ ### Requirements
41+
42+ | Plugin Version | PHP Version | WordPress Version | Support |
43+ | ----------------| -------------| -------------------| ---------------|
44+ | v3 | 8.1 to 8.5 | 6.5 to 6.9 | Full |
45+ | v2 | 7.0 to 8.3 | 5.8 to 6.8 | Not Supported |
46+
3947### Through [ WordPress Plugin directory] ( https://wordpress.org/plugins/rollbar/ )
4048
4149The easiest way to install the plugin is from the WordPress Plugin directory. If you have an existing WordPress
@@ -179,6 +187,8 @@ The plugin provides a number of filters that allow you to customize the behavior
179187Filter to allow or deny access to a Rollbar route in the WordPress REST API used in the WordPress Admin. Generally,
180188this should be the same as the ` rollbar_user_can_view_admin ` filter.
181189
190+ ** Since: 3.0.0**
191+
182192** Parameters**
183193
184194* ` bool $value ` - The initial value. Defaults is ` true ` for admin users, ` false ` for non-admin users.
@@ -216,6 +226,8 @@ Filters the Rollbar plugin settings.
216226
217227Filters the Rollbar Core SDK PHP configuration.
218228
229+ ** Since: 3.0.0**
230+
219231** Parameters**
220232
221233* ` array $config ` - The Rollbar PHP configuration array.
@@ -224,6 +236,8 @@ Filters the Rollbar Core SDK PHP configuration.
224236
225237Filter the list of actions to instrument with Telemetry.
226238
239+ ** Since: 3.0.0**
240+
227241** Parameters**
228242
229243* ` array<string, int> $actions ` - An associative array where the keys are action names and the values are the number of
@@ -236,6 +250,8 @@ Filter the list of custom action event handlers for Telemetry.
236250Note: The custom action handler will only be called if the action is instrumented with Telemetry. This means you must
237251select the action on the settings page, or add it to the list of actions using the ` rollbar_telemetry_actions ` filter.
238252
253+ ** Since: 3.0.0**
254+
239255** Parameters**
240256
241257* ` array<string, callable(string, mixed...):string> $handlers ` - An associative array where the keys are action names
@@ -247,6 +263,8 @@ Filter to enable / disable the admin settings page of the plugin for the current
247263
248264This filter cannot override the ` ROLLBAR_DISABLE_ADMIN ` constant.
249265
266+ ** Since: 3.0.0**
267+
250268** Parameters**
251269
252270* ` bool $allow ` - ` true ` to enable the admin settings page, ` false ` to disable it.
0 commit comments