Releases: wingify/vwo-fme-php-sdk
Releases · wingify/vwo-fme-php-sdk
Version 1.12.0
-
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
- Implemented schema validation fixes and improvements
Version 1.11.0
- 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
Sends usage statistics to VWO servers automatically during SDK initialization
Version 1.9.0
Added support for sending a one-time initialization event to the server to verify correct SDK setup.
Version 1.8.0
[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
Added a feature to track and collect usage statistics
Version 1.7.2
[1.7.2] - 2025-05-06
Fixed
- Update option name for passing settings while initializing the SDK.
Version 1.7.1
[1.7.1] - 2025-04-25
Fixed
- Fixed the base URL issue for EU and Asia regions.
Version 1.7.0
[1.7.0] - 2024-04-14
Added
- Lowered minimum PHP version requirement from 7.4 to 7.0