Skip to content

Releases: wingify/vwo-fme-php-sdk

Version 1.12.0

25 Sep 14:15
Compare
Choose a tag to compare
  • Add support for user aliasing (will work after gateway has been setup)

    $vwoClient = VWO::init([
        'accountId' => 'vwo_account_id',
        'sdkKey' => '32-alpha-numeric-sdk-key',
        'gatewayService' => [
            'url' => 'http://your-custom-gateway-url',
        ],
        'isAliasingEnabled' => true,
    ]);
    
    $vwoClient->setAlias($context, 'aliasId');
    // alternatively you can also pass the userId and the aliasId instead of context and aliasId
    $vwoClient->setAlias('userId', 'aliasId');

Version 1.11.1

12 Sep 08:42
Compare
Choose a tag to compare
  • Implemented schema validation fixes and improvements

Version 1.11.0

02 Sep 16:20
Compare
Choose a tag to compare
  • Post-segmentation variables are now automatically included as unregistered attributes, enabling post-segmentation without requiring manual setup.
  • Added support for built-in targeting conditions, including browser version, OS version, and IP address, with advanced operator support

Version 1.10.0

02 Sep 11:17
Compare
Choose a tag to compare

Sends usage statistics to VWO servers automatically during SDK initialization

Version 1.9.0

05 Aug 08:59
Compare
Choose a tag to compare

Added support for sending a one-time initialization event to the server to verify correct SDK setup.

Version 1.8.0

01 Jul 10:18
Compare
Choose a tag to compare

[1.8.0] - 2025-07-01

Changed

  • Replaced GuzzleHttp with native PHP socket implementation for improved network performance.
  • Achieved 90% reduction in getFlag API response time through optimized socket-based impression calls.

Version 1.7.5

13 May 15:29
Compare
Choose a tag to compare

Added a feature to track and collect usage statistics

Version 1.7.2

06 May 13:04
Compare
Choose a tag to compare

[1.7.2] - 2025-05-06

Fixed

  • Update option name for passing settings while initializing the SDK.

Version 1.7.1

06 May 13:03
Compare
Choose a tag to compare

[1.7.1] - 2025-04-25

Fixed

  • Fixed the base URL issue for EU and Asia regions.

Version 1.7.0

14 Apr 13:48
Compare
Choose a tag to compare

[1.7.0] - 2024-04-14

Added

  • Lowered minimum PHP version requirement from 7.4 to 7.0